-
Notifications
You must be signed in to change notification settings - Fork 30
/
manifest.js
32 lines (28 loc) · 859 Bytes
/
manifest.js
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
const { version } = require("./package.json");
const manifest = {
"manifest_version": 2,
"name": "Coder's Calendar",
"short_name": "Coder's Calendar",
"description": "Never miss a Coding contest again! Displays live and upcoming Programming Contests happening on a variety of popular platforms.",
"version": version,
"permissions": [
"http://contesttrackerapi.herokuapp.com/",
"notifications",
"storage"
],
"icons": {
"16": "img/icon32.png",
"32": "img/icon32.png",
"48": "img/icon32.png",
"128": "img/icon32.png"
},
"browser_action": {
"default_icon": "img/icon32.png",
"default_popup": "index.html"
},
"background": {
"scripts": ["js/event_listeners.js"]
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
};
module.exports = manifest