-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.09 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
{
"name": "Simple Bookmark",
"description": "This is a simple bookmark extension",
"version": "1.0",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"manifest_version": 3,
"background": {
"service_worker": "packages/background/dist/index.js"
},
"options_page": "packages/options/dist/index.html",
"permissions": [
"bookmarks",
"tabs"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"packages/content-scripts/dist/index.js"
],
"css": [
"packages/content-scripts/dist/index.css"
]
}
],
"action": {
"default_title": "Press it to open bookmark"
},
"web_accessible_resources": [
{
"resources": [
"packages/content-scripts/dist/*"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}