-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
53 lines (53 loc) · 1.49 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
{
"name": "Impuestito: precio final juegos con impuestos",
"description": "Conocé el precio final de los juegos de Playstation, Xbox, Nintendo y Epic, GOG y más! (Precio final con impuestos Argentina)",
"version": "1.10",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*.playstation.com/es-ar/*",
"*://*.playstation.com/en-us/*",
"*://*.xbox.com/es-AR/*",
"*://*.xbox.com/es-ar/*",
"*://*.nintendo.com/es-ar/*",
"*://*.nintendo.com/search/es-ar/*",
"*://*.epicgames.com/*",
"*://*.gog.com/*",
"*://*.ubisoft.com/*",
"*://*.ea.com/*",
"*://*.xbdeals.net/ar-store*",
"*://*.psdeals.net/ar-store*",
"*://*.dekudeals.com/*",
"*://*.steampowered.com/*"
],
"css": ["css/styles.css"],
"js": [
"js/index.js",
"js/helpers.js",
"js/gaming/playstation.js",
"js/gaming/xbox.js",
"js/gaming/nintendo.js",
"js/gaming/epic.js",
"js/gaming/gog.js",
"js/gaming/ubisoft.js",
"js/gaming/ea.js",
"js/gaming/xbdeals.js",
"js/gaming/psdeals.js",
"js/gaming/dekudeals.js",
"js/gaming/steam.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "/assets/icon16.png",
"32": "/assets/icon32.png",
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
}
}