forked from arnaud/chrome-tab-sugar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 971 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
39
40
41
42
{
"name": "__MSG_extName__",
"version": "0.10.0",
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"16": "ico/16.png",
"48": "ico/48.png",
"128": "ico/128.png"
},
"browser_action": {
"default_icon": "ico/browser_action_loading.png",
"default_title": "__MSG_browserActionLoading__"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"ftp://*/*"
],
"js": [
"js/lib/jquery.1.4.2.min.js",
"js/lib/jquery.hotkeys-0.7.9.min.js",
"js/activate_hotkey.js"
],
"run_at": "document_start"
}
],
"background_page": "background.html",
"options_page": "options.html",
"minimum_chrome_version": "13",
"permissions": [
"tabs",
"unlimited_storage",
"chrome://favicon/",
"http://tabsugar.com/",
"bookmarks",
"contextMenus",
"<all_urls>"
]
}