-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
63 lines (57 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version":2,
"icons": {
"128": "icon2_128_128.png"
},
"name":"Kindle Optimizer",
"description":"Adds instant Google Search and Translate functionality to the Kindle Cloud Reader.",
"version":"3.1" ,
"page_action": {
"default_icon":"icon.png",
"default_title":"Kindle Optimizer",
"default_popup":"popup.html"
},
"content_scripts":[
{
"matches":["https://read.amazon.com/*", "https://read.amazon.ca/*", "https://read.amazon.co.uk/*", "https://lesen.amazon.de/*", "https://lire.amazon.fr/*",
"https://leggi.amazon.it/*", "https://ler.amazon.com.br/*", "https://read.amazon.com.au/*", "https://read.amazon.co.jp/*", "https://read.amazon.in/*"],
"js":["csOptimizer.js", "jquery-1.10.2.js"],
"all_frames": true
}
],
"background":{
"scripts": ["eventPage.js"],
"persistent":true
},
"web_accessible_resources": ["script.js"],
"permissions":[
"tabs",
"https://read.amazon.com/*",
"webRequest",
"webRequestBlocking",
"*://amazon.com/*",
"*://www.amazon.com/*",
"*://smile.amazon.com/*",
"*://amazon.co.uk/*",
"*://www.amazon.co.uk/*",
"*://smile.amazon.co.uk/*",
"*://amazon.de/*",
"*://www.amazon.de/*",
"*://smile.amazon.de/*",
"*://amazon.fr/*",
"*://www.amazon.fr/*",
"*://amazon.es/*",
"*://www.amazon.es/*",
"*://amazon.it/*",
"*://www.amazon.it/*",
"*://amazon.co.jp/*",
"*://www.amazon.co.jp/*",
"*://amazon.ca/*",
"*://www.amazon.ca/*",
"*://amazon.in/*",
"*://www.amazon.in/*",
"*://amazon.com.au/*",
"*://www.amazon.com.au/*"
]
}