forked from naei/wanikani-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 818 Bytes
/
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
{
"manifest_version": 2,
"name": "WaniKani Companion",
"version": "1.2.4.3",
"description": "Your favorite Japanese learning app at a click away.",
"browser_action": {
"default_title": "WaniKani Companion",
"default_icon": "/img/wanikani/icon.png",
"default_popup": "/html/home.html"
},
"icons": {
"128": "/img/wanikani/icon.png"
},
"permissions": [
"*://*.wanikani.com/",
"notifications",
"storage",
"webRequest",
"webRequestBlocking"
],
"content_scripts": [
{
"matches": ["*://www.wanikani.com/*"],
"js": [
"/js/web-content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"scripts": [
"/js/lib/moment.min.js",
"/js/helper.js",
"/js/background.js"
]
}
}