-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·49 lines (49 loc) · 1.02 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
49
{
"name": "BookmarkIt",
"version": "1.0.6",
"manifest_version": 2,
"description": "Add bookmarks to bk-it.herokuapp.com",
"homepage_url": "https://github.com/julienR2",
"applications": {
"gecko": {
"id": "bookmarkIt@bookmarkIt.com"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"js/jquery.min.js",
"js/store.min.js",
"src/bg/helpers.js",
"src/bg/api.js",
"src/bg/background.js"
],
"persistent": false
},
"web_accessible_resources": [
"templates/*",
"css/*",
"js/*"
],
"browser_action": {
"browser_style": true,
"default_icon": "icons/icon19.png",
"default_title": "BookmarkIt!"
},
"options_ui": {
"page": "src/options/options.html",
"chrome_style": true
},
"permissions": [
"activeTab",
"tabs",
"storage",
"*://bk-it.herokuapp.com/api/*",
"https://fonts.googleapis.com/*"
]
}