forked from andmm/live-bomb
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
36 lines (30 loc) · 813 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
{
"manifest_version": 2,
"name": "Live Bomb!",
"description": "This extension notifies you when GiantBomb is live and you can also check the site schedule.",
"version": "1.2.21",
"permissions": [
"background",
"notifications"
],
"icons": {
"16": "images/livebomb16.png",
"48": "images/livebomb48.png",
"128": "images/livebomb128.png"
},
"author": "André Milani",
"short_name": "Livebomb",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; img-src *; object-src 'self'",
"background": {
"scripts": ["js/common.min.js", "js/background.min.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images/livebomb19.png",
"38": "images/livebomb38.png"
},
"default_popup": "popup.html",
"default_title": "Live Bomb!"
}
}