-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 786 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 786 Bytes
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
{
"manifest_version": 2,
"name": "Motify",
"description": "This extension fetches new updates from moodle periodically.",
"version": "0.2",
"author": "Deepankar Tyagi(codebuff)",
"homepage_url": "http://codebuff.net",
"permissions": [
"https://moodle.niituniversity.in/*",
"storage",
"alarms",
"tabs"
],
"icons": {
"16": "moodle.png",
"48": "moodle.png",
"128": "moodle.png"
},
"options_page": "options.html",
"browser_action": {
"default_icon": "moodle.png",
"default_popup": "popup.html",
"default_title": "see moodle notifications, right click for options"
},
"background": {
"page": "background.html",
"persistent": false
}
}