-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 1 KB
/
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
{
"name": "Browser Schedular",
"version": "1.0",
"description": "Schedule task on your browser",
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"permissions": ["windows", "storage", "declarativeContent", "notifications", "http://*/*"],
"browser_action": {
"default_popup": "ui/index.html",
"default_icon": {
"16": "icons/schedule_icon.png",
"32": "icons/schedule_icon.png",
"48": "icons/schedule_icon.png",
"128": "icons/schedule_icon.png"
}
},
"icons": {
"16": "icons/schedule_icon.png",
"32": "icons/schedule_icon.png",
"48": "icons/schedule_icon.png",
"128": "icons/schedule_icon.png"
},
"content_scripts": [
{
"matches" : ["http://*/*", "https://*/*"],
"css": ["css/style.css"],
"js" : ["js/read_data.js", "js/getObject.js", "js/write_data.js"]
}
],
"manifest_version": 2
}