forked from elliotlepers/Amazon-Killer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (25 loc) · 925 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
{
"manifest_version": 2,
"name": "Amazon Killer",
"description": "Cherchez un livre sur Amazon et trouvez-le dans une vraie librairie",
"version": "1",
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["*://*.amazon.fr/*", "*://*.amazon.com/*", "*://*.amazon.co.uk/*", "*://*.amazon.com.mx/*", "*://*.amazon.co.jp/*", "*://*.amazon.it/*", "*://*.amazon.in/*", "*://*.amazon.es/*", "*://*.amazon.cn/*", "*://*.amazon.ca/*", "*://*.amazon.com.br/*", "*://*.amazon.de/*", "*://*.amazon.com.au/*"],
"js": ["jquery.js", "content.js"]
}],
"browser_action": {
"default_title": "Find a bookshop",
"default_icon": "icon.png"
},
"web_accessible_resources": [
"images/*.png"
],
"permissions": ["activeTab"],
"icons": { "16": "icon.png",
"48": "icon.png",
"128": "icon.png" }
}