-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.1 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
{
"manifest_version": 2,
"name": "Goodlink",
"version": "1.1.0",
"description": "A direct link to Goodreads from Amazon.",
"browser_action": {
"default_icon": {
"16": "icons/grayed.png",
"48": "icons/[email protected]",
"128": "icons/[email protected]"
}
},
"icons": {
"16": "icons/grayed.png",
"48": "icons/[email protected]",
"128": "icons/[email protected]"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"*://*.amazon.in/*",
"*://*.amazon.cn/*",
"*://*.amazon.co.jp/*",
"*://*.amazon.com.tr/*",
"*://*.amazon.ae/*",
"*://*.amazon.fr/*",
"*://*.amazon.de/*",
"*://*.amazon.it/*",
"*://*.amazon.nl/*",
"*://*.amazon.es/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.ca/*",
"*://*.amazon.com.mx/*",
"*://*.amazon.com/*",
"*://*.amazon.com.au/*",
"*://*.amazon.com.br/*"
],
"js": ["content.js"]
}
],
"permissions": ["tabs", "*://*.goodreads.com/*"],
"web_accessible_resources": ["*"]
}