forked from ceceradio/twitter-block-chain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.17 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "Twitter Block Chain",
"description": "Blocks all users on a following/followers page.",
"version": "1.8.3",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": ["js/background.js"],
"persistent": true
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"unlimitedStorage",
"storage",
"activeTab",
"webRequest",
"webRequestBlocking",
"*://*.twimg.com/",
"https://api.twitter.com/",
"https://mobile.twitter.com/",
"https://twitter.com/"
],
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": ["https://mobile.twitter.com/*","https://twitter.com/*"],
"css": ["css/content.css"],
"js": [
"js/browser-polyfill.min.js",
"js/Queue.js",
"js/ExtensionStorage.js",
"bower_components/jquery/dist/jquery.min.js",
"js/blockchain.js"
]
}
]
}