-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.01 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
{
"author": "Waldemar Villamayor-Venialbo",
"manifest_version": 3,
"name": "RETSpy - Downloader Tool",
"version": "1.0",
"description": "Herramienta de descarga de imágenes satelitales y de radar.",
"permissions": ["activeTab", "scripting", "storage"],
"web_accessible_resources": [
{
"resources": ["src/dmh.js", "assets/dmh.css"],
"matches": ["https://www.meteorologia.gov.py/*"]
},
{
"resources": ["src/simepar.js"],
"matches": ["https://www.simepar.br/*"]
},
{
"resources": [
"lib/fflate.js",
"src/common.js",
"src/logging.js",
"src/downloader.js",
"src/gui.js",
"src/shared.js"
],
"matches": [
"https://www.meteorologia.gov.py/*",
"https://www.simepar.br/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://www.meteorologia.gov.py/satelite-goes-16*",
"https://www.simepar.br/simepar/radar_msc*"
],
"js": ["src/content.js"]
}
]
}