-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
73 lines (66 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "CleanLinks",
"description": "__MSG_addon_description__",
"author": "Cimbali (maintainer), \nDiego Casorran (historic creator), \nEduard Braun (German translation), \nSimon Chan (Chinese and Taiwanese translations)",
"manifest_version": 2,
"version": "4.2.3",
"homepage_url": "https://github.com/Cimbali/CleanLinks",
"default_locale": "en_US",
"icons":
{
"64": "icons/CleanLinks.png"
},
"permissions": [
"clipboardWrite",
"contextMenus",
"alarms",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage",
"https://publicsuffix.org/list/public_suffix_list.dat"
],
"background":
{
"scripts": [
"modules/browser-polyfill.js",
"modules/common.js",
"modules/punycode.js",
"modules/publicsuffixlist.js",
"modules/rules.js",
"modules/cleanlink.js",
"background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>", "*://*/*", "file:///*"],
"js": [
"modules/browser-polyfill.js",
"modules/common.js",
"inject.js"
],
"run_at": "document_end",
"match_about_blank": true,
"all_frames": true
}
],
"web_accessible_resources": [ "data/rules.json", "data/public_suffix_list.dat" ],
"options_ui":
{
"page": "pages/options.html",
"browser_style": true
},
"browser_action":
{
"default_icon": "icons/32.png",
"default_popup": "pages/popup.html"
},
"applications":
{
"gecko":
{
"id": "clean-links@Cimbali.github.com"
}
}
}