forked from RishiRaj22/coding_shout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
30 lines (30 loc) · 910 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
{
"name": "Codechef Shout",
"description" : "Stop staring at your screen waiting for the result to pop up, relax and let this extension notify you with the results",
"version": "1.2",
"manifest_version": 2,
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_action": {
"default_popup": "options.html",
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"background": {
"scripts": ["script.js"],
"persistent": true
},
"permissions": ["notifications","storage","tts","webRequest","*://*.codechef.com/submit/complete/*", "*://*.codechef.com/get_submission_status/*"]
}