-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·28 lines (26 loc) · 984 Bytes
/
manifest.json
File metadata and controls
executable file
·28 lines (26 loc) · 984 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
{
"name": "Highlight some phrases",
"description": "Hightlight some pre defined text from websql database after page loads",
"version": "0.1",
"permissions": [
"tabs","<all_urls>","background"
],
"browser_action": {
"default_icon": "./assets/img/shield.png",
"default_popup": "./html/popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": ["./assets/js/graphlib.min.js", "./assets/js/jquery.js", "./assets/js/jquery-ui.js", "./extension_scripts/content_scripts/draggable.js", "./extension_scripts/content_scripts/main.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["./assets/js/graphlib.min.js", "./extension_scripts/background/background.js", "./extension_scripts/background/recording_state.js", "./assets/js/jquery.js"]
},
"manifest_version":2
}