-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest-chrome.json
41 lines (41 loc) · 1.11 KB
/
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
{
"manifest_version": 3,
"name": "Ћирилизатор",
"description": "Претвара латиничне стране у ћириличне.",
"author": "Јован Турањанин",
"version": "3.0",
"background": {
"service_worker": "scripts/background.js"
},
"action": {
"default_icon": {
"16": "icons/icon-off-16.png",
"32": "icons/icon-off-32.png",
"48": "icons/icon-off-48.png",
"128": "icons/icon-off-128.png"
},
"default_title": "Ћирилизуј"
},
"icons": {
"16": "icons/icon-on-16.png",
"32": "icons/icon-on-32.png",
"48": "icons/icon-on-48.png",
"128": "icons/icon-on-128.png"
},
"declarative_net_request": {
"rule_resources" : [{
"id": "map",
"enabled": true,
"path": "resources/latin-cyrillic-domains.json"
}]
},
"permissions": [
"declarativeNetRequestWithHostAccess",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
]
}