-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (36 loc) · 901 Bytes
/
manifest.json
File metadata and controls
38 lines (36 loc) · 901 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
38
{
"manifest_version": 2,
"name": "NoteMaker",
"description": "Allows user to make notes under certain title by selecting text from various websites",
"version": "1.0",
"icons" : {
"128": "images/icon.png"
},
"web_accessible_resources": [
"js/hilight.js"
],
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"options_page" : "options.html",
"background":{
"scripts":["cdn/jquery-3.2.1.min.js", "js/eventPage.js"],
"persistent":false //event page of persistent is false
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["cdn/jquery-3.2.1.min.js","js/hilight.js", "js/script.js"],
"run_at": "document_start",
"all_frames": true
}
],
"permissions":[
"storage",
"contextMenus",
"tabs",
"identity",
"notifications"
]
}