-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
24 lines (24 loc) · 858 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
{
"name": "My Bookmarks",
"version": "0.1.0",
"description": "A self-hosted chrome bookmarks extension, including search, add, edit and delete.",
"permissions": ["bookmarks", "storage", "tabs"],
"browser_action": {
"default_title": "Self-Hosted Chrome Bookmarks",
"default_icon": {
"16": "static/images/icon.png",
"32": "static/images/icon.png",
"48": "static/images/icon.png",
"128": "static/images/icon.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "static/images/icon.png",
"32": "static/images/icon.png",
"48": "static/images/icon.png",
"128": "static/images/icon.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://cdn.staticfile.org; object-src 'self'"
}