-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
26 lines (26 loc) · 1.01 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
{
"name": "Bookmark Manager",
"version": "2.3.5",
"description": "Displays and organises your bookmarks",
"permissions": ["storage", "bookmarks", "history"],
"icons": {
"16": "images/BM squish.png",
"48": "images/BM [email protected]",
"128": "images/BM [email protected]"
},
"chrome_url_overrides" : {
"newtab" : "newTab.html"
},
"options_page": "options.html",
"background":{
"scripts": ["main.js"],
"persistent": false
},
"browser_action": {
"default_icon": "images/BM [email protected]",
"default_popup": "popup.html"
},
"content_security_policy":
"script-src 'self' https://www.google-analytics.com https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js https://fonts.googleapis.com ; object-src 'self';",
"manifest_version": 2
}