-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
46 lines (45 loc) · 1.06 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
{
"manifest_version": 3,
"name": "Java-Redirector",
"version": "6.0",
"description": "Redirects your Browser to the newest version of the javadocs",
"icons": {
"48": "icons/java-redirect-48.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage"
],
"host_permissions": ["*://docs.oracle.com/*"],
"background": {
"scripts": ["java-redirect.js"]
},
"options_ui": {
"page": "settings.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{b75af37b-574d-4746-ac34-629fa349cf81}"
}
},
"web_accessible_resources": [
{
"resources": [
"json/modules-v10.json",
"json/modules-v11.json",
"json/modules-v12.json",
"json/modules-v13.json",
"json/modules-v14.json",
"json/modules-v15.json",
"json/modules-v16.json",
"json/modules-v17.json",
"json/modules-v18.json",
"json/modules-v19.json",
"json/modules-v20.json",
"json/modules-v21.json"
],
"matches": ["*://docs.oracle.com/*"]
}
]
}