-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
80 lines (71 loc) · 1.82 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
{
"name": "Deledao Education",
"version": "2024.7.17.1",
"manifest_version": 2,
"description": "Deledao protects students and their privacy online in real time.",
"update_url": "https://cc.deledao.com/GetUpdates",
"icons": { "16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png" },
"permissions": [
"alarms",
"tabs",
"activeTab",
"cookies",
"storage",
"downloads",
"privacy",
"webRequest",
"webRequestBlocking",
"webNavigation",
"idle",
"browsingData",
"system.cpu",
"identity",
"identity.email",
"nativeMessaging",
"notifications",
"contextMenus",
"geolocation",
"enterprise.deviceAttributes",
"<all_urls>",
"*://*/*"
],
"background": {
"scripts": [ "backlibs.js", "core.min.js", "bInit.js" ],
"persistent": true
},
"browser_action": {
"default_icon": "icons/128.png"
},
"web_accessible_resources": [
"frontend/ytScript.js"
],
"oauth2": {
"client_id": "775655569459-rf957jtgdl0u86dhla0klkn6mmn580d0.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email"
]
},
"content_scripts": [
{
"matches": [ "*://*/*" ],
"match_about_blank": true,
"js": [ "core.min.js", "fInit.js" ],
"all_frames": true,
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": [
"https://*.deledao.com/*",
"https://*.dev.deledao.com/*"
],
"ids": ["jbiooalnpjmfldodiaclikfcebmekfmh", // Local test ext.
"hmfjajhcddnpmhkhakkgoibealjcffho", // Hapara dev ext.
"kbohafcopfpigkjdimdcdgenlhkmhbnc", // Hapara prod ext.
"aceopacgaepdcelohobicpffbbejnfac" // 20221215: Hapara new ext id.
]
},
"incognito": "spanning"
}