forked from cphamlet/chrome-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·34 lines (33 loc) · 1007 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
{
"name": "Tutorial Creating Assistant",
"description": "Browser Interface for generic tutorial creator",
"version": "0.1",
"permissions": ["tabs", "<all_urls>", "background", "nativeMessaging"],
"browser_action": {
"default_icon": "./assets/img/tutorial.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/main.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"./assets/js/graphlib.min.js",
"./assets/js/jquery.js",
"./extension_scripts/background/background.js",
"./extension_scripts/background/recording_state.js",
"./extension_scripts/background/native_host_listener.js",
"./hot-reload.js"
]
},
"manifest_version": 2
}