-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.05 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": "chromekick",
"version": "0.1",
"description": "Used for working on Cloudkick",
"omnibox": { "keyword" : "ck" },
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_icon": "icon48.png", // optional
"default_title": "chromekick", // optional; shown in tooltip
"default_popup": "popup.html" // optional
},
"background_page": "background.html",
"permissions": [
"http://*.cloudkick.com/*",
"https://*.cloudkick.com/*",
"http://127.0.0.1/*",
"http://ck.dev/*",
"tabs",
"bookmarks",
"unlimitedStorage",
"cookies",
"history",
"idle",
"management",
"notifications",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"http://*.cloudkick.com/*",
"https://*.cloudkick.com/*",
"http://127.0.0.1/*",
"http://ck.dev/*"
],
"css": ["content_style.css"],
"js": [
"jquery-1.5.2-min.js",
"underscore.js",
"contentscript.js"
]
}
]
}