-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
24 lines (24 loc) · 776 Bytes
/
Copy pathmanifest.json
File metadata and controls
24 lines (24 loc) · 776 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
{
"name": "Note Hub",
"description": "SW Maestro 5th NoteHub Crawler",
"version": "1.0",
"permissions": ["contextMenus", "tabs", "http://*/*", "https://*/*", "<all_urls>"],
"browser_action": {
"default_icon": "/resources/img/icon16_bw.png"
},
"background": {
"scripts": ["/resources/lib/jquery/jquery-1.9.1.js", "/resources/javascript/background.js", "/static/js/vendor/jquery-ui.min.js", "/static/js/vendor/bootstrap.min.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["/resources/stylesheets/common.css"],
"js": ["/resources/lib/jquery/jquery-1.9.1.js", "/resources/javascript/main.js"],
"run_at": "document_end"
}
],
"icons": {
"16": "/resources/img/icon16_bw.png"
},
"manifest_version": 2
}