-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest-chrome.json
128 lines (128 loc) · 3.24 KB
/
manifest-chrome.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"manifest_version": 3,
"name": "exSTATic",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuwn/wsj43FLW2rxrACsMQK+58H2Cjkwez105WIDVfdj6SUiTIXdzBO2lT+tSZmoLx9HRbULqg0Aq4z8yg/mSHIjrQPPB/Gr1QFexWSAyvqkyJsePxwjpybo1aotuVo/fesMyHyBsenH7xNxSpsSbldA8GbVFks3rQc5gQOexhe1PXOA5GlmBOhIPO2vrITk60X5Ysp1VwGhx1OlUF9IixcH2uHvWm4n15AsINPH+OFx3mJw7xS+GqCL2bYP/mxepOohA8lKHKEPFtSFOBdFMtTA3tV/HEUU6G5hsS6IeQpBjzW2YTmaHD3tcK5SSdnK336AX3htYxY/O6zwErXx3PQIDAQAB",
"version": "0.0.11",
"description": "Completely automated reading statistics and tracking",
"icons": {
"100": "docs/favicon_100x100.png",
"500": "docs/favicon.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"scripting",
"downloads"
],
"host_permissions": [
"https://kamwithk.github.io/exSTATic/**.html",
"file:///*/exSTATic/**.html",
"file:///*/fjiikigkdpahddfcembbapebejanfnhf/**.html",
"https://*/Manga/**.html",
"file:///**/Manga/**.html",
"https://ttu-ebook.web.app/**",
"https://reader.ttsu.app/**",
"file:///**/ttu-ebook.web.app/**",
"file:///**/reader.ttsu.app/**"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://kamwithk.github.io/exSTATic/tracker.html",
"file:///*/exSTATic/*/tracker.html",
"file:///*/fjiikigkdpahddfcembbapebejanfnhf/*/tracker.html"
],
"js": [
"vn/tracker_inject.js",
"fonts.js"
],
"css": [
"docs/fonts.css",
"vn/tracker_inject.css"
]
},
{
"matches": [
"https://ttu-ebook.web.app/**",
"https://reader.ttsu.app/**",
"file:///**/ttu-ebook.web.app/**",
"file:///**/reader.ttsu.app/**"
],
"js": [
"ttu/ttu_inject.js",
"fonts.js"
],
"css": [
"docs/fonts.css",
"ttu/ttu_inject.css"
]
},
{
"matches": [
"https://*/Manga/**.html",
"file:///**/Manga/**.html"
],
"js": [
"mokuro/mokuro_inject.js",
"fonts.js"
],
"css": [
"docs/fonts.css",
"mokuro/mokuro_inject.css"
]
},
{
"matches": [
"https://kamwithk.github.io/exSTATic/stats.html",
"file:///*/exSTATic/*/stats.html",
"file:///*/fjiikigkdpahddfcembbapebejanfnhf/*/stats.html"
],
"js": [
"stats/stats_inject.js",
"fonts.js"
],
"css": [
"docs/fonts.css",
"stats/stats_inject.css"
]
},
{
"matches": [
"https://kamwithk.github.io/exSTATic/settings.html",
"file:///*/exSTATic/*/settings.html",
"file:///*/fjiikigkdpahddfcembbapebejanfnhf/*/settings.html"
],
"js": [
"settings/settings_inject.js",
"fonts.js"
],
"css": [
"docs/fonts.css",
"settings/settings_inject.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"/fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": {
"100": "docs/favicon_100x100.png",
"500": "docs/favicon.png"
}
}
}