-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.24 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
{
"name": "Bookmark anywhere",
"short_name": "BA",
"version": "0.0.7",
"manifest_version": 2,
"description": "Use different Bookmarks in the bookmarks bar at different locations.",
"homepage_url": "https://github.com/PabloK/Bookmark-anywhere",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"author" : "Pablo Karlsson",
"options_page" : "src/templates/options.html",
"default_locale": "en",
"background": {
"scripts": ["js/background.js"]
},
"minimum_chrome_version" : "20",
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"48": "icons/icon48.png"
},
"default_title": "Bookmark anywhere",
"default_popup": "src/templates/options.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/vendor/jq.min.js",
"js/vendor/angular.min.js",
"js/vendor/angular-route.min.js",
"js/vendor/bootstrap.min.js",
"js/vendor/angular-ui.js",
"js/app.js",
"js/helpers.js",
"js/models.js",
"js/controllers.js"
]
}
],
"permissions": [
"bookmarks",
"storage"
]
}