forked from AllMangasReader-dev/AMR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
99 lines (98 loc) · 2.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name" : "All Mangas Reader",
"version" : "1.5.1",
"manifest_version" : 2,
"description" : "__MSG_description__",
"default_locale" : "en",
"icons" : {
"16" : "img/icon-32.png",
"32" : "img/icon-32.png",
"128" : "img/icon-32.png"
},
"browser_action" : {
"default_icon" : "img/icon-32.png",
"default_title" : "AllMangasReader",
"default_popup" : "popup.html"
},
"background" : {
"persistent" : true,
"page" : "background.html"
},
"content_scripts" : [{
"matches" : [
"http://*/*"
],
"css" : [
"css/back.css"
],
"js" : [
"js/jquery.js",
"js/jquery.scrollTo-1.4.3.1-min.js",
"js/jquery.simplemodal-1.4.4.js",
"js/back.js"
]
}, {
"matches" : [
"http://*.allmangasreader.com/*"
],
"css" : [
"css/backsite.css"
],
"js" : [
"js/jquery.js",
"js/backsite.js"
]
}, {
"matches" : [
"http://community.allmangasreader.com/*",
"http://amrroot/*"
],
"css" : [
"css/backamrc.css"
],
"js" : [
"js/jquery.js",
"js/backamrc.js"
]
}
],
"content_security_policy" : "script-src 'self' https://ssl.google-analytics.com https://ssl10.ovh.net https://www.google.com/; object-src 'self'",
"homepage_url" : "http://www.allmangasreader.com/",
"key" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFE73kwUiPfxcBtTkkkboktSCXCrDxMWvYSO72IabK3Q9pqvkEcViyFcuj6mpztx55kYhwFT+ntasZZiNgzhxkjc9zEuHopyrg+/S2tgGa7ueZ+P8s3IMOeEWj9Mqw2qyvPoZ508Q6FwrGjU6rZAhBtS5dzhibkFxRQc9Yej2ppQIDAQAB",
"minimum_chrome_version" : "18.0",
"options_page" : "options.html",
"permissions" : [
"tabs",
"http://*/*",
"https://ssl10.ovh.net/*",
"unlimited_storage",
"clipboardWrite",
"contextMenus",
"notifications",
"webRequestBlocking",
"bookmarks"
],
"update_url" : "http://allmangasreader.com/update/update.xml",
"web_accessible_resources" : [
"img/icon-32.png",
"img/down.png",
"img/bookmark.png",
"img/down.png",
"img/read_stop.png",
"img/lefttoright.png",
"img/stop.gif",
"img/loading.gif",
"img/cancel.png",
"img/ontop.png",
"img/righttoleft.png",
"img/load16.gif",
"img/add.png",
"img/bookmarkred.png",
"img/warn.png",
"img/read_play.png",
"img/amrlittle.png",
"img/dev.png",
"img/ltload.gif",
"img/load10.gif"
]
}