-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
36 lines (36 loc) · 930 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
{
"name" : "__MSG_appName__",
"description" : "__MSG_appDescription__",
"version" : "1.2.6",
"manifest_version" : 2,
"default_locale" : "en",
"background" : {
"page" : "background.html"
},
"permissions" : [
"tabs", "<all_urls>"
],
"page_action" : {
"default_title" : "__MSG_pageActionTitle__",
"default_icon" : "icon-48.png"
},
"icons" : {
"19" : "icon-48.png",
"48" : "icon-48.png"
},
"content_scripts" : [
{
"matches" : ["<all_urls>"],
"js" : ["content_script.js"]
}
],
"commands" : {
"_execute_page_action" : {
"suggested_key" : {
"default" : "Ctrl+E",
"mac" : "Command+E"
},
"description" : "CSS Reload"
}
}
}