-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
38 lines (38 loc) · 920 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
35
36
37
38
{
"manifest_version": 2,
"name": "Bookmarks ★ ★ ★",
"version": "0.11",
"description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.",
"permissions": [
"bookmarks",
"tabs",
"history",
"storage",
"unlimitedStorage",
"chrome://favicon/",
"http://*/*",
"https://*/*",
"http://*.facebook.com/*",
"https://connect.facebook.net/*",
"https://graph.facebook.com/oauth/access_token"
],
"browser_action": {
"default_title": "My Bookmarks.",
"default_icon": "img/icon16.png",
"default_popup": "pages/newtab.html"
},
"options_page": "pages/newtab.html#options",
"icons": {
"16": "img/icon16.png"
},
"chrome_url_overrides": {
"newtab": "pages/newtab.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ",
"omnibox" : {
"keyword": "*"
},
"background" : {
"page":"pages/background.html"
}
}