-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.21 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
{ "manifest_version": 2,
"background": {
"page": "background.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [ "common/sjcl.js", "CHANGE__PASSWORD__HERE.js", "common/common.js", "blockStart.js" ],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*", "file://*/*" ],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [ "blockAfter.js" ],
"matches": [ "http://*/*", "https://*/*", "ftp://*/*", "file://*/*" ],
"run_at": "document_idle"
}
],
"description": "A smart extension that controls javascript, iframes, and plugins on Google Chrome.",
"icons": {
"128": "img/icon128.png",
"16": "img/icon16.png",
"19": "img/forbidden.png",
"48": "img/icon48.png"
},
"name": "ScriptBlock",
"minimum_chrome_version": "18",
"options_page": "options.html",
"browser_action": {
"default_icon": "img/disabled.png",
"default_popup": "popup.html",
"default_title": "ScriptBlock - click for more action"
},
"permissions": [ "tabs" ],
"version": "1.0"
}