-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 1.4 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": "EchoMEI",
"version": "1.0.0",
"description": "EchoMEI é projetado para agilizar o processo de extração e gerenciamento de dados de MEI da Receita Federal do Brasil.",
"author": "[email protected]",
"homepage_url": "https://github.com/Takk8IS",
"permissions": [
"activeTab",
"downloads",
"notifications",
"scripting",
"storage",
"tabs"
],
"host_permissions": ["*://*.receita.fazenda.gov.br/*"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "images/icon48.png",
"72": "images/icon72.png",
"96": "images/icon96.png",
"128": "images/icon128.png",
"144": "images/icon144.png",
"192": "images/icon192.png",
"512": "images/icon512.png",
"1024": "images/icon1024.png"
}
},
"icons": {
"48": "images/icon48.png",
"72": "images/icon72.png",
"96": "images/icon96.png",
"128": "images/icon128.png",
"144": "images/icon144.png",
"192": "images/icon192.png",
"512": "images/icon512.png",
"1024": "images/icon1024.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}