-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·50 lines (50 loc) · 1.15 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
{
"name": "Goodreads for Amazon",
"version": "0.1.5",
"manifest_version": 2,
"description": "See Goodreads reviews on Amazon",
"homepage_url": "https://ruben.codes",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"content.js"
],
"matches": [
"https://*.amazon.ae/*",
"https://*.amazon.ca/*",
"https://*.amazon.cn/*",
"https://*.amazon.com/*",
"https://*.amazon.com.au/*",
"https://*.amazon.com.br/*",
"https://*.amazon.com.mx/*",
"https://*.amazon.com.sg/*",
"https://*.amazon.com.tr/*",
"https://*.amazon.co.jp/*",
"https://*.amazon.co.uk/*",
"https://*.amazon.de/*",
"https://*.amazon.fr/*",
"https://*.amazon.es/*",
"https://*.amazon.in/*",
"https://*.amazon.it/*",
"https://*.amazon.nl/*"
]
}
],
"permissions": [
"https://*.goodreads.com/*"
]
}