-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmanifest.json
39 lines (39 loc) · 989 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
{
"name": "Neat URL",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/Smile4ever/Neat-URL",
"manifest_version": 2,
"version": "6.1.0",
"default_locale": "en",
"web_accessible_resources": [
"data/publicsuffix-ccSLD.txt",
"data/default-params-by-category.json"
],
"background": {
"scripts": ["browser-polyfill.min.js", "shared.js", "toolbaricon.js", "background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["shared.js", "neaturl.js"],
"run_at": "document_start"
}
],
"icons": {
"48": "icons/dark/neaturl-48.png",
"96": "icons/dark/neaturl-96-state0.png"
},
"applications": {
"gecko": {
"id": "neaturl@hugsmile.eu",
"strict_min_version": "48.0"
}
},
"permissions": ["storage", "notifications", "contextMenus", "webRequest", "webRequestBlocking", "tabs", "<all_urls>"],
"options_ui": {
"page": "options.html"
},
"action": {
"default_icon": "icons/dark/neaturl-96-state0.png"
}
}