-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (39 loc) · 1.08 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
{
"manifest_version": 2,
"name": "RoKA (Reddit on KissAnime)",
"short_name": "RoKA",
"description": "RoKA embeds Reddit comments to KissAnime and KissManga!",
"author": "myh1000",
"homepage_url": "https://github.com/myh1000/RoKA",
"version": "1.0.2",
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"minimum_chrome_version": "41.0",
"content_security_policy": "script-src 'self' https://api.reddit.com; object-src 'self'",
"options_page": "res/options.html",
"default_locale": "en",
"content_scripts": [
{
"matches": ["*://kissanime.ru/*", "*://kissmanga.com/*"],
"js": ["js/snuownd.js", "js/script.js", "js/manga-parser/mangaparser.js"],
"css": ["res/style.css"],
"run_at": "document_end"
}
],
"permissions": [
"https://api.reddit.com/",
"http://kissanime.ru/",
"http://kissmanga.com/",
"storage"
],
"web_accessible_resources": [
"res/style.css",
"res/chrome_shared.css",
"res/widgets.css",
"js/*",
"res/*",
"TypeScript/*",
"icon128.png"
]
}