forked from HabitRPG/habitica-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
27 lines (24 loc) · 870 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
{
"background": {
"scripts": [ "scripts/background.js" ]
},
"description": "Monitors your browsing habits to divvy points to your HabitRPG character.",
"icons": {
"128": "img/icon-128.png",
"19": "img/icon-19.png",
"48": "img/icon-48.png"
},
"browser_action":
{
"default_icon": "img/icon-19.png",
"default_title" : "Habit RPG is running!",
"default_popup": "popup.html"
},
"manifest_version": 2,
"name": "HabitRPG",
"options_page": "options.html",
"permissions": [ "storage", "tabs", "webNavigation", "notifications", "contextMenus", "https://habitrpg.com/", "http://*/*", "https://*/*" ],
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "0.1.5",
"web_accessible_resources": [ "img/icon-48-up.png", "img/icon-48-down.png", "img/icon-48-alert.png"]
}