forked from billyct/cookies_json_chrome_extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
31 lines (31 loc) · 804 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
{
"description": "easily extract and display the VPN cookie to use with openconnect and Cisco AnyConnect Servers.",
"icons": {
"128": "icons/128.png",
"26": "icons/26.png",
"32": "icons/32.png",
"48": "icons/48.png"
},
"manifest_version": 3,
"name": "OpenAnyconnect Cookie Tray (Uni Lincoln)",
"offline_enabled": false,
"permissions": [
"declarativeContent",
"activeTab",
"cookies"
],
"short_name": "cookietray",
"version": "0.1.0",
"background": {
"service_worker": "service_worker.js"
},
"action": {
"default_icon": "icons/128.png",
"default_popup": "scripts/popup.html",
"default_title": "show the Openconnect cookie/cmd line"
},
"content_security_policy": {},
"host_permissions": [
"https://remote.lincoln.ac.uk/*"
]
}