-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
38 lines (38 loc) · 1002 Bytes
/
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
{
"name": "Platkey",
"description": "Atajos de teclado, guarda clases, guarda aportes, buscador aumentado.",
"version": "3.2",
"manifest_version": 3,
"author": "Marcelo Arias",
"background": {
"service_worker": "/dist/js/background.js"
},
"content_scripts": [
{
"js": [
"/dist/js/saveItems.js",
"/dist/js/spotlight.js",
"/dist/js/content.js"
],
"matches": ["https://platzi.com/*"],
"css": ["/dist/styles/page.css"]
}
],
"action": {
"default_popup": "/dist/popup.html",
"default_icon": {
"16": "/dist/images/icon16.png",
"32": "/dist/images/icon32.png",
"48": "/dist/images/icon48.png",
"128": "/dist/images/icon128.png"
}
},
"icons": {
"16": "/dist/images/icon16.png",
"32": "/dist/images/icon32.png",
"48": "/dist/images/icon48.png",
"128": "/dist/images/icon128.png"
},
"permissions": ["storage", "scripting"],
"host_permissions": ["https://platzi.com/*"]
}