-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.2 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
47
48
{
"manifest_version": 2,
"name": "webmark",
"version": "0.0.1",
"description": "a better chrome bookmark extension",
"permissions": [
"storage",
"tabs",
"bookmarks",
"http://*/*",
"https://*/*",
"notifications"
],
"icons": {
"16": "/icons/heart_w_16.png",
"24": "/icons/heart_w_24.png",
"48": "/icons/heart_w_48.png",
"128": "/icons/heart_w_128.png"
},
"minimum_chrome_version": "6.0.0.0",
"page_action": {
"default_icon": {
"19": "/icons/heart_w_24.png",
"38": "/icons/heart_w_48.png"
},
"default_title": "Add Bookmark",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["/css/style.css"],
"js": ["/js/jquery-2.0.3.min.js", "/js/contentScripts.js"]
}
],
"background": {
"scripts": [
"/dropbox/dropbox.min.js",
"/js/background.js"
]
},
"web_accessible_resources": [
"/img/crossword.png",
"/dropbox/chrome_oauth_receiver.html",
"/img/wood.jpg",
"index.html"
]
}