-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
23 lines (22 loc) · 779 Bytes
/
manifest.json
File metadata and controls
23 lines (22 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "When2Meet Autofill",
"description": "Autofills your when2meets using you Google Calendar",
"version": "0.6",
"permissions": ["contextMenus", "identity", "activeTab", "tabs", "http://*/*", "https://*/*"],
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon-16.png"
},
"oauth2": {
"client_id": "",
"scopes": ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly"]
},
"content_scripts": [{ "matches": ["*://www.when2meet.com/?*"],
"js": ["jquery-2.1.1.min.js", "temp.js"],"run_at": "document_start"}],
"icons": { "16": "icon-16.png", "128": "icon-128.png" },
"options_page" : "options.html"
}