forked from hsbakshi/reddit-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
26 lines (26 loc) · 865 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
{
"manifest_version": 2,
"background": {
"page":"background.html",
"persistent": true
},
"browser_action": {
"default_icon": { "19": "images/alien19.png", "38": "images/alien38.png" },
"default_popup": "popup.html",
"default_title": "Reddited"
},
"description": "Check if current URL is submitted on reddit. Submit link or join the discussion.",
"options_page": "options.html",
"icons": {
"19": "images/alien19.png",
"32": "images/alien32.png",
"38": "images/alien38.png",
"48": "images/alien48.png",
"64": "images/alien64.png",
"128": "images/alien128.png"
},
"name": "Reddit Check",
"permissions": [ "tabs", "http://www.reddit.com/*", "storage"],
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "0.8.1"
}