forked from mattiabasone/CanopyGUIEnhancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (52 loc) · 1.15 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"manifest_version": 2,
"name": "Canopy GUI Enhancer",
"short_name": "CGE",
"description": "Enhance the standard CambiumNetworks Canopy Web GUI",
"version": "1.9.0",
"version_name": "1.9.0",
"author": "Mattia Basone <mattia.basone@gmail.com>",
"browser_action": {
"default_icon": "icons/icon_144px.png",
"default_popup": "popup/index.html",
"default_title": "Canopy GUI Enhancer - Edit settings"
},
"icons": {
"512": "icons/icon_512px.png",
"192": "icons/icon_192px.png",
"144": "icons/icon_144px.png",
"96": "icons/icon_96px.png",
"72": "icons/icon_72px.png",
"48": "icons/icon_48px.png"
},
"permissions": [
"notifications",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content_loader.js"
],
"run_at": "document_idle"
}],
"web_accessible_resources":[
"cge.js",
"css/bootstrap-mini.css",
"css/gui.css",
"css/style.css",
"css/menu.css",
"css/themes/dark.css"
],
"background": {
"scripts": [
"update_checker.js"
],
"persistent": false
}
}