-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·38 lines (38 loc) · 850 Bytes
/
manifest.json
File metadata and controls
executable file
·38 lines (38 loc) · 850 Bytes
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
{
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "0.0.0",
"manifest_version": 3,
"icons": {
"16": "images/16x16.png",
"48": "images/48x48.png",
"128": "images/128x128.png"
},
"background": {
"service_worker": "background.js"
},
"default_locale": "en",
"permissions": ["contextMenus", "activeTab", "tts", "storage"],
"host_permissions": ["<all_urls>"],
"action": {
"default_icon": {
"16": "images/16x16.png",
"48": "images/48x48.png",
"128": "images/128x128.png"
}
},
"externally_connectable": {
"matches": [
"*://localhost/*",
"*://imagetext.xyz/*",
"*://*.imagetext.xyz/*"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.jsx"],
"run_at": "document_end"
}
]
}