-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 828 Bytes
/
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
{
"name": "Copy for Scrapbox",
"description": "Users can get a link to the page in the current tab in Scrapbox notation.",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icons": {
"16": "images/icos16.png",
"24": "images/icon24.png",
"32": "images/icon32.png",
"128": "images/icon128.png"
}
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"icons": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png",
"128": "images/icon128.png"
},
"permissions": ["tabs", "contextMenus", "scripting", "storage"],
"host_permissions": [
"https://*/*"
],
"web_accessible_resources": [
{
"resources": ["/src/*.js"],
"matches": ["<all_urls>"]
}
]
}