-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
49 lines (41 loc) · 860 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
43
44
45
46
47
48
49
{
"manifest_version": 2,
"name": "BetaCheck",
"version": "1.0",
"description": "Checks all images on a page and BetaSafes them",
"icons": {
"48": "icons/betacheck_icon_48.png",
"96": "icons/betacheck_icon_96.png"
},
"permissions": [
"<all_urls>",
"*://localhost/*",
"*://localhost:2382/*",
"webRequest",
"storage",
"tabs",
"contextMenus"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["betacheck.js"]
}
],
"options_ui": {
"page": "popup/options.html"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/betacheck_icon_32.png",
"default_title": "BetaCheck",
"default_popup": "popup/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}