-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
139 lines (139 loc) · 3.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "GoGuardian",
"version": "3.0.6444.2",
"manifest_version": 2,
"background": { "page": "background.html" },
"browser_action": {
"default_icon": {
"16": "icons/static-light-16.png",
"32": "icons/static-light-32.png",
"48": "icons/static-light-48.png",
"128": "icons/static-light-128.png"
},
"default_title": "GoGuardian",
"default_popup": "popup.html"
},
"icons": {
"16": "icons/static-light-16.png",
"32": "icons/static-light-32.png",
"48": "icons/static-light-48.png",
"128": "icons/static-light-128.png"
},
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPdMH1s/Pt9zfEC6GU2YAky8AtlEeTgKWRZPt5MNMRCz4tp1l5zVnNj12ZFT/7ujt7zND5JL5ucGlsQBSV6GlZHN/ZpP3n6RadQUsGG9IRjvxtUYh2h1hc1GMFAe+E3yLYC9NvgxRbOS3Xdphv0JwokgGXov2oJjledjctWGDluQIDAQAB",
"update_url": "https://staging-ext.goguardian.com/alpha.xml",
"content_security_policy": "script-src 'self' https://*.pusher.com 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_matches": ["https://secure.aleks.com/*"],
"js": ["admin.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": [
"*://*.youtube.com/*",
"*://*.youtube.com./*",
"*://*.youtube-nocookie.com/*",
"*://*.youtube-nocookie.com./*",
"*://translate.googleusercontent.com/*"
],
"js": ["youtube.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"exclude_matches": ["https://secure.aleks.com/*"],
"js": ["teacher.js"],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"exclude_matches": ["https://secure.aleks.com/*"],
"js": ["miner.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"exclude_matches": ["https://secure.aleks.com/*"],
"js": ["imageFilter.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["<all_urls>"],
"exclude_matches": ["https://secure.aleks.com/*"],
"js": ["privacy.js"],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": ["https://meet.google.com/*"],
"js": ["meetPrivacy.js"],
"run_at": "document_start",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"js": ["annotate.js"],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": ["<all_urls>"],
"js": ["scheme.js"],
"run_at": "document_start"
},
{
"matches": ["*://docs.google.com/*"],
"js": ["googleDocsHtmlFallback.js"],
"run_at": "document_start"
}
],
"permissions": [
"cookies",
"geolocation",
"history",
"idle",
"management",
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"activeTab",
"http://*/*",
"https://*/*",
"<all_urls>",
"identity",
"identity.email",
"webNavigation",
"notifications",
"enterprise.deviceAttributes",
"pageCapture",
"alarms",
"system.memory",
"system.cpu",
"nativeMessaging",
"background"
],
"web_accessible_resources": [
"teacher/*",
"beacon/*",
"x3/*",
"avro/*/*",
"privacy/*",
"youtube_injection.js",
"blocked.svg"
],
"externally_connectable": {
"ids": ["fobcbbhcfonjdomhmmjhbnchobfebhfp"],
"matches": [
"https://*.goguardian.com/*",
"https://extension.goguardian/*",
"http://localhost:5022/*"
]
}
}