-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
73 lines (66 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Gopher Buddy",
"short_name": "GB",
"description": "Installed by your Google Workspace for Education admin. Tracks IP, user, timestamp data for school managed devices and users only.",
"version": "0.9.8.9",
"icons": {
"32": "images/gopher-buddy_32x32_color.png",
"128": "images/gopher-buddy_128x128_color.png"
},
"background": {
"scripts": [
"vendor/jquery/dist/jquery.js",
"vendor/angular/angular.js",
"vendor/lodash/lodash.js",
"vendor/q/q.js",
"app.config.js",
"buildInfo.js",
"scripts/analytics.lib.js",
"scripts/sessions.lib.js",
"scripts/pubsub.lib.js",
"background.js",
"debug.js"
]
},
"content_scripts": [
{
"matches": ["https://gopher-buddy-prod.appspot.com/*"],
"js": ["scripts/content_script.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"images/gopher-buddy_128x128_color.png",
"images/chrome_gopher_unhappy_128.png",
"images/check.png",
"images/clock.png"
],
"browser_action": {
"default_popup": "templates/popup.html",
"default_icon": "images/gopher-buddy_128x128_color.png",
"default_title": "Gopher Buddy"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"alarms",
"storage",
"notifications",
"https://gopher-buddy-dev.appspot.com/*",
"https://gopher-buddy-prod.appspot.com/*",
"idle",
"identity",
"identity.email",
"enterprise.deviceAttributes",
"browsingData"
],
"oauth2": {
"client_id": "974563760330-o47cf80n1i95p1f56ovt2ghp3l64oerj.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email"
]
}
}