-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
49 lines (38 loc) · 1.3 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
{
"manifest_version": 2,
"version" : "0.0.1",
"name": "santamonica converter",
"description": "extension para convertir automaticamente el restante de facturacion del pos a bolivares",
"browser_action": {
"default_title": "santamonica converter",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"chromeos": "Alt+C",
"default": "Alt+C",
"linux": "Alt+C",
"mac": "Alt+C",
"windows": "Alt+C"
}
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
"web_accessible_resources": ["calculadora.js"],
"icons" : {
"16" : "icon16.png",
"48" : "icon48.png",
"128" : "icon128.png"
},
"background":{
"service_worker": "background.js"
},
"permissions": ["storage", "activeTab", "scripting"],
"options_page": "options.html",
"offline_enabled": true,
"sandbox": {
"pages": ["popup.html"]
}
}