forked from ScratchAddons/ScratchAddons
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
66 lines (66 loc) · 1.69 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.13.0",
"version_name": "1.13.0-prerelease",
"default_locale": "en",
"background": {
"page": "background/background.html"
},
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "webpages/popup/index.html",
"default_title": "Scratch Addons"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"1024": "images/icon.png"
},
"content_scripts": [
{
"matches": ["https://scratch.mit.edu/*"],
"run_at": "document_start",
"js": ["libraries/comlink.js", "content-scripts/cs.js"],
"all_frames": true
},
{
"matches": ["https://scratch.mit.edu/*"],
"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": "not_allowed",
"permissions": [
"https://scratch.mit.edu/*",
"https://api.scratch.mit.edu/*",
"https://clouddata.scratch.mit.edu/*",
"cookies",
"webRequest",
"webRequestBlocking",
"storage",
"contextMenus",
"alarms"
],
"optional_permissions": ["notifications", "clipboardWrite"],
"web_accessible_resources": [
"content-scripts/inject/*",
"addon-api/*",
"addons/*",
"libraries/*",
"addons-l10n/*/*.json",
"images/cs/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}