-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
26 lines (26 loc) · 1.06 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
{
"manifest_version": 2,
"name": "Mais barato! Livrarias portuguesas",
"version": "1.3.2",
"description": "Mostra os preços de outras livrarias",
"permissions": ["storage", "*://*.bertrand.pt/*", "*://*.wook.pt/*", "*://*.almedina.net/*", "*://*.antigona.pt/*", "*://*.portoeditora.pt/*", "*://*.fnac.pt/*", "*://*.leyaonline.com/*", "*://*.bookdepository.com/*"],
"icons":
{
"48": "icon.png"
},
"web_accessible_resources": [
"pin.svg"
],
"background":
{
"scripts": ["background.js"]
},
"content_scripts":
[
{
"matches": ["*://*.bertrand.pt/*", "*://*.wook.pt/*", "*://*.almedina.net/*", "*://*.antigona.pt/*", "*://*.portoeditora.pt/*", "*://*.fnac.pt/*", "*://*.leyaonline.com/*", "*://*.bookdepository.com/*"],
"css": ["style.css"],
"js": ["bookstores/bertrand.js", "bookstores/wook.js", "bookstores/almedina.js", "bookstores/antigona.js", "bookstores/portoeditora.js", "bookstores/fnac.js", "bookstores/leya.js", "bookstores/bookdepository.js", "main.js"]
}
]
}