forked from ScratchAddons/ScratchAddons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
85 lines (85 loc) · 2.34 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.38.2",
"version_name": "1.38.2",
"default_locale": "en",
"background": {
"service_worker": "background/background.js",
"type": "module",
"page": "background/background.html"
},
"action": { "default_popup": "webpages/popup/index.html" },
"icons": {
"16": "images/icon-blue-16.png",
"32": "images/icon-blue-32.png",
"1024": "images/icon-blue.png"
},
"content_scripts": [
{
"matches": [
"https://scratch.mit.edu/*",
"https://scratchfoundation.github.io/scratch-gui/*",
"http://localhost:8333/*",
"http://localhost:8601/*"
],
"run_at": "document_start",
"js": ["libraries/thirdparty/cs/comlink.js", "libraries/common/cs/text-color.js", "content-scripts/cs.js"],
"all_frames": true
},
{
"matches": [
"https://scratch.mit.edu/*",
"https://scratchfoundation.github.io/scratch-gui/*",
"http://localhost:8333/*",
"http://localhost:8601/*"
],
"run_at": "document_start",
"js": ["content-scripts/prototype-handler.js", "content-scripts/load-redux.js", "content-scripts/fix-console.js"],
"all_frames": true
}
],
"options_ui": {
"page": "webpages/settings/index.html",
"open_in_tab": true
},
"homepage_url": "https://scratchaddons.com",
"incognito": "spanning",
"host_permissions": [
"https://scratch.mit.edu/*",
"https://api.scratch.mit.edu/*",
"https://clouddata.scratch.mit.edu/*",
"https://scratchfoundation.github.io/scratch-gui/*",
"http://localhost:8333/*",
"http://localhost:8601/*"
],
"permissions": [
"cookies",
"webRequest",
"webRequestBlocking",
"declarativeNetRequestWithHostAccess",
"storage",
"contextMenus",
"alarms"
],
"optional_permissions": ["notifications", "clipboardWrite"],
"web_accessible_resources": [
{
"resources": [
"content-scripts/inject/*",
"addon-api/*",
"addons/*",
"libraries/*/cs/*",
"addons-l10n/*/*.json",
"images/cs/*"
],
"matches": ["https://*.scratch.mit.edu/*", "https://scratchaddons.com/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}