-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmanifest.json
More file actions
91 lines (91 loc) · 1.89 KB
/
manifest.json
File metadata and controls
91 lines (91 loc) · 1.89 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
{
"name": "__MSG_extName__",
"short_name": "ScratchTools",
"manifest_version": 3,
"version": "4.3.0",
"version_name": "4.3.0-beta",
"default_locale": "en",
"description": "__MSG_extDescription__",
"author": "rgantzos",
"background": {
"service_worker": "/extras/background.js"
},
"permissions": [
"scripting",
"storage",
"alarms"
],
"action": {
"default_icon": "/extras/icons/icon48.png",
"default_popup": "/extras/popup/popup.html",
"default_title": "ScratchTools"
},
"icons": {
"16": "/extras/icons/icon16.png",
"48": "/extras/icons/icon48.png",
"128": "/extras/icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://scratch.mit.edu/*"
],
"run_at": "document_start",
"js": [
"api/content/vm.js",
"api/content/redux.js"
],
"all_frames": true
},
{
"matches": [
"https://scratch.mit.edu/*"
],
"run_at": "document_start",
"js": [
"extras/inject-styles.js",
"api/update/index.js"
],
"css": [
"api/update/style.css"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"features/*",
"/extras/feature/index.html",
"/api/*",
"/libraries/*",
"/extras/icons/*"
],
"matches": [
"https://scratch.mit.edu/*"
]
}
],
"host_permissions": [
"https://scratch.mit.edu/"
],
"optional_host_permissions": [
"https://api.scratch.mit.edu/"
],
"browser_specific_settings": {
"gecko": {
"id": "info@scratchtools.app",
"strict_min_version": "42.0"
}
},
"externally_connectable": {
"matches": [
"https://scratch.mit.edu/*"
]
},
"options_ui": {
"page": "extras/index.html",
"open_in_tab": true
},
"homepage_url": "https://scratchtools.app"
}