-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (29 loc) · 743 Bytes
/
manifest.json
File metadata and controls
30 lines (29 loc) · 743 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
{
"name": "Easy Board",
"description": "Manage your bookmarks with tags quickly & easily.",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "/src/background/background.js",
"type": "module"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"permissions": ["storage", "tabs", "bookmarks", "activeTab", "scripting"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/src/static/eb.png",
"32": "/src/static/eb.png",
"48": "/src/static/eb.png",
"128": "/src/static/eb.png"
}
},
"icons": {
"16": "/src/static/eb.png",
"32": "/src/static/eb.png",
"48": "/src/static/eb.png",
"128": "/src/static/eb.png"
}
}