-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
executable file
·48 lines (45 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "FB Calendar",
"short_name": "FB Calendar",
"version": "2.1.1",
"manifest_version": 2,
"description": "Extension to add select Facebook events to your Google Calendar with the click of a button!",
"homepage_url": "http://github.com/anyazz",
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"page_action": {
"default_icon": "icons/icon-48.png",
"default_title": "FB Calendar",
"default_popup": "popup.html"
},
"background": {
"scripts": ["js/moment.js", "js/moment-timezone-data.js", "js/jquery-3.1.1.js", "js/background.js", "js/gapi-client.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://www.facebook.com/events/*"],
"js": ["js/moment.js", "js/moment-timezone-data.js", "js/jquery-3.1.1.js", "js/extension.js"]
}],
"content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'",
"oauth2": {
"client_id": "959780096527-3840ecdn47brr0lqefodnf9rt96uvqnd.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/calendar", "profile"
]
},
"permissions": [
"*://*.facebook.com/*",
"*://facebook.com/*",
"*://calendar.google.com/*",
"tabs",
"webNavigation",
"identity",
"identity.email",
"https://*.googleapis.com/*",
"https://*.googleusercontent.com/*"
]
}