forked from ScratchAddons/ScratchAddons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
62 lines (62 loc) · 1.74 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.34.0",
"version_name": "1.34.0-prerelease",
"default_locale": "en",
"background": {
"page": "background/background.html"
},
"browser_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://codingclip.com/editor/*", "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://codingclip.com/editor/*", "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",
"permissions": [
"https://codingclip.com/editor/*",
"http://localhost:8601/*",
"https://api.codingclip.com/*",
"webRequest",
"webRequestBlocking",
"declarativeNetRequestWithHostAccess",
"storage",
"alarms",
"contextMenus"
],
"optional_permissions": ["clipboardWrite"],
"web_accessible_resources": [
"content-scripts/inject/*",
"addon-api/*",
"addons/*",
"libraries/*/cs/*",
"addons-l10n/*/*.json",
"images/cs/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}