-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.01 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
{
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "45.0"
}
},
"browser_action": {
"browser_style": true,
"default_title": "Finds <br> tags",
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
}
},
"background": { "scripts": ["scripts/background_script.js"] },
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [ "scripts/content_script.js" ]
}
],
"description": "SlashOn <br> Tag finder",
"homepage_url": "http://www.slashon.ca",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"manifest_version": 2,
"name": "SlashOn <br> Tag finder",
"options_ui": {
"page": "settingsUI/settings.html",
"browser_style": true
},
"permissions": [
"<all_urls>",
"notifications",
"storage",
"activeTab"
],
"version": "1.4.0",
"author": "Maxim Perry",
"web_accessible_resources": [
"icons/*.png",
"*.html",
"*.js"
]
}