-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (50 loc) · 1.47 KB
/
manifest.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"background": {
"scripts": [
"bower_components/jquery/dist/jquery.min.js",
"bower_components/cryptojslib/rollups/aes.js",
"bower_components/axios/dist/axios.min.js",
"background/connect.js",
"background/information.js",
"background/omnibox.js",
"background/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icons/icon48.png",
"default_popup": "popup/popup.html"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "content_scripts/insainvite.js" ],
"matches": [
"*://securelogin.arubanetworks.com/upload/custom/guests/centre.htm",
"*://*.insa-lyon.fr/upload/custom/CP_FILAIRE/centre.htm"
]
}, {
"js": [ "content_scripts/autoconnect.js" ],
"matches": [ "*://*.insa-lyon.fr/*" ]
}],
"description": "Connectez-vous automatiquement au réseau wifi insa-invité, à cipcnet et au réseau insa, en un clic.",
"icons": {
"128": "icons/icon128.png",
"16": "icons/icon16.png",
"48": "icons/icon48.png"
},
"manifest_version": 2,
"name": "InsaChrome",
"omnibox": {
"keyword": "i"
},
"options_page": "options/options.html",
"permissions": [
"http://securelogin.arubanetworks.com/*",
"*://*.insa-lyon.fr/*",
"cookies", "storage", "tabs", "notifications"
],
"web_accessible_resources": [
"icon/icon128.png"
],
"version": "3.4.2"
}