-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
100 lines (100 loc) · 2.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "Open Earth Engine extension",
"description": "An unoffical extension to enhance Google Earth Engine, and Open Earth Engine experience.",
"version": "1.9.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"declarative_net_request" : {
"rule_resources" : [{
"id": "ruleset",
"enabled": true,
"path": "rules.json"
}]
},
"web_accessible_resources": [{
"resources": [
"2022-04-20.json",
"3rd_party/*",
"3rd_party/pyodide/*",
"addCopyJSON.js",
"addLinkToDoc.js",
"addPlotly.js",
"addTerminal.js",
"consoleError.js",
"earthengine-api.tar.gz",
"editorSettings.js",
"EEDarkMode.js",
"externalConenctingfix.js",
"hackEE.js",
"images/logo.json",
"images/pyLogo.svg",
"images/logo_white_OEEex_open_128.png",
"insertInCE.js",
"isShareable.js",
"OEE_Interface.py",
"OEEMenu.js",
"openScriptNewTab.js",
"options.html",
"planetLab.js",
"pythonCE.js",
"runAllTasks.js",
"sharedCodeSession.js",
"surveyMessage.js",
"uploadWithManifest.js"
],
"matches": ["https://code.earthengine.google.com/*"]
},{
"resources": ["addPlotly.js"],
"matches": ["https://*.earthengine.app/*"]
},{
"resources":["options.html","planet.html"],
"matches":["https://www.open-geocomputing.org/*"]
}],
"host_permissions": [
"https://api.planet.com/*",
"https://code.earthengine.google.com/",
"https://code.earthengine.google.com/repo/file/load?*",
"https://link.planet.com/*",
"https://tiles.planet.com/*"
],
"permissions": [
"activeTab",
"storage",
"declarativeNetRequest"
],
"content_scripts": [
{
"matches": ["https://code.earthengine.google.com/*"],
"js": ["injectionScript.js"],
"css" : ["EEDarkMode.css","OEEex.css","planetLab.css"]
},{
"matches": ["https://*.earthengine.app/*"],
"js": ["injectionScriptApp.js"],
"css" : ["EEDarkMode.css","OEEex.css"]
}
],
"action": {
"default_icon": {
"16": "/images/logo_white_OEEex_open_16.png",
"32": "/images/logo_white_OEEex_open_32.png",
"48": "/images/logo_white_OEEex_open_48.png",
"128": "/images/logo_white_OEEex_open_128.png"
}
},
"icons": {
"16": "/images/logo_white_OEEex_open_16.png",
"32": "/images/logo_white_OEEex_open_32.png",
"48": "/images/logo_white_OEEex_open_48.png",
"128": "/images/logo_white_OEEex_open_128.png"
},
"options_page": "options.html",
"externally_connectable": {
"matches": [
"https://code.earthengine.google.com/*",
"https://colab.research.google.com/*",
"https://*.googleusercontent.com/*"
]
}
}