-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmanifest.json
More file actions
92 lines (88 loc) · 1.9 KB
/
manifest.json
File metadata and controls
92 lines (88 loc) · 1.9 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"manifest_version": 3,
"default_locale": "en",
"name": "NoScript Commons Library",
"applications": {
"gecko": {
"id": "nscl@noscript.net",
"strict_min_version": "115.0"
}
},
"version": "1.0.1",
"permissions": [
"contextMenus",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"scripting",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"declarativeContent",
"debugger"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "sw.js",
"scripts": [
"/lib/browser-polyfill.js",
"/lib/punycode.js",
"/common/UA.js",
"/common/uuid.js",
"/common/log.js",
"/common/locale.js",
"/common/tld.js",
"/common/Messages.js",
"/common/SyncMessage.js",
"/common/CSP.js",
"/common/CapsCSP.js",
"/common/NetCSP.js",
"/common/RequestKey.js",
"/common/Sites.js",
"/common/Permissions.js",
"/common/Policy.js",
"/common/Storage.js",
"/common/sha256.js",
"/service/TabCache.js",
"/common/include.js",
"/main.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"matches": ["<all_urls>"],
"match_about_blank": true,
"match_origin_as_fallback": true,
"all_frames": true,
"js": [
"/lib/browser-polyfill.js",
"/common/uuid.js",
"/common/SyncMessage.js",
"/content/Worlds.js",
"/content.js"
]
},
{
"run_at": "document_start",
"matches": ["<all_urls>"],
"match_about_blank": true,
"match_origin_as_fallback": true,
"all_frames": true,
"world": "MAIN",
"js": [
"/main/uuid.js",
"/main/Worlds.js",
"/content.main.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}