forked from WaniKani/Chrome-Notification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
24 lines (24 loc) · 683 Bytes
/
manifest.json
File metadata and controls
24 lines (24 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "__MSG_wanikaninotify_name__",
"version": "0.2",
"manifest_version": 2,
"description": "__MSG_wanikaninotify_description__",
"default_locale": "en",
"icons": {"128": "icon_128.png"},
"background" : {"scripts": ["background.js"], "persistent": false},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://www.wanikani.com/review"],
"js": ["review_page.js"]
}
],
"permissions": ["alarms", "storage", "notifications", "http://www.wanikani.com/api/*"],
"browser_action": {
"default_title": "WaniKani Notifier",
"default_icon": "icon_128.png"
},
"web_accessible_resources": [
"icon_128.png"
]
}