forked from hpaolini/tinyFilter-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (42 loc) · 893 Bytes
/
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
{
"manifest_version": 2,
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "tinyFilter",
"version": "0.4",
"description": "tinyFilter: The Web content filter for Google Chrome!",
"icons": {
"48": "48.png",
"128": "128.png"
},
"browser_action": {
"default_icon": "48.png",
"default_title": "tinyFilter",
"default_popup": "popup.html"
},
"permissions": [
"http://*/*", "https://*/*", "tabs"
],
"background": {
"scripts" : ["background.js", "2.0.0-crypto-sha256.js"],
"persistent" : true
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"site.js",
"content.js"
],
"run_at": "document_start",
"all_frames": true
},{
"matches": ["http://*/*", "https://*/*"],
"js": [
"overlay.js"
],
"run_at": "document_end",
"all_frames": true
}
]
}