-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
60 lines (57 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
60
{
"manifest_version": 2,
"name": "boysenberry",
"description": "quick and dirty dev tools",
"version": "1.1",
"background":{
"page":"background.html",
"persistent":true
},
"content_scripts":[
{
"matches":["http://*/*","https://*/*"],
"css":["boysenCSS.css", "animate.css"],
"js":["externalJS/jquery-1.11.1.min.js","externalJS/jquery-ui.min.js","boysenDom.js","boysenInsertions.js"],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "boysenberry_logo.png"
},
"permissions": [
"activeTab", "tabs", "https://*/*", "http://*/*"
],
"optional_permissions": [ "clipboardWrite" ],
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"commands":{
"show_details":{
"suggested_key":{
"default":"Ctrl+B",
"mac":"Ctrl+B",
"windows":"Ctrl+B"
},
"description": "toggle details"
},
"copy":{
"suggested_key":{
"default":"Alt+B",
"mac":"Alt+B",
"windows":"Alt+B"
},
"description": "toggle details"
},
"toggle_details":{
"suggested_key":{
"default":"Ctrl+I",
"mac":"Ctrl+I",
"windows":"Ctrl+I"
},
"description": "toggle details"
}
},
"web_accessible_resources":[
"loading_gif.gif"
]
}