-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
60 lines (59 loc) · 1.17 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
{
"manifest_version": 3,
"name": "Gatry Shades",
"description": "Opções de temas para o Gatry.com",
"version": "1.1.7",
"icons": {
"128": "icons/icone128.png",
"64": "icons/icone64.png",
"32": "icons/icone32.png",
"16": "icons/icone16.png"
},
"action": {
"default_icon": "icons/icone32.png",
"default_popup": "menu.html",
"default_title": "Gatry Shades"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"js": [
"js/listener.js"
],
"css": [
"css/main.css"
],
"matches": [
"*://gatry.com/*"
]
}
],
"omnibox": {
"keyword": "gatry"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"*://gatry.com/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*.png",
"css/*.css"
],
"matches": [
"*://gatry.com/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}