-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (29 loc) · 940 Bytes
/
Copy pathmanifest.json
File metadata and controls
37 lines (29 loc) · 940 Bytes
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
{
"name": "PM",
"version": "1.0.4",
"manifest_version": 2,
"description": "Post contextual reminders on web pages.",
"background": { "page": "background.html"},
"browser_action": {
"default_icon": "PM.png",
"default_popup": "browser_action.html"
},
"commands" :
{
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+M",
"mac": "Ctrl+M",
"windows": "Ctrl+Shift+M"
}
}
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["jquery-1.10.1.min.js", "jquery.jeditable.mini.js", "rtm/md5.js", "rtm/rtm.js", "rtm/chromeConnect.js", "sandbox.js"]
}],
"permissions": [
"chrome://favicon/", "tabs", "<all_urls>", "storage"
],
"web_accessible_resources": ["css/sticky.css", "css/font-awesome.css", "font/fontawesome-webfont.eot", "font/fontawesome-webfont.svg", "font/fontawesome-webfont.ttf", "font/fontawesome-webfont.woff"]
}