-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest_chrome.json
46 lines (46 loc) · 947 Bytes
/
manifest_chrome.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
{
"manifest_version": 3,
"name": "EZProxy Redirect",
"description": "Quickly reload pages through your library's EZProxy.",
"version": "22",
"author": "Tom Wambold <[email protected]>",
"homepage_url": "https://github.com/tom5760/chrome-ezproxy",
"background": {
"type": "module",
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"optional_permissions": [
"clipboardWrite",
"scripting"
],
"host_permissions": [
"https://libproxy-db.org/proxies.json"
],
"commands": {
"_execute_action": {
"description": "Reload the current page through EZProxy."
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Reload through EZProxy"
}
}