-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (54 loc) · 1.51 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
{
"manifest_version": 3,
"name": "Foureyes",
"description": "Learning what you are learning while browsing",
"version": "1.0",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmp0MkoFR+6ypkTdHNhR9KKp2ndanTHT32TT1mD1m1fY3gsOUckOZeEP2qGh3CZ/dAEDsijTwizxLDzAQZ+CZpMo7SDHuUsM2CcJuKzT+BfGcbNVnrARapR+732R7wJ5lb7ldxxEZ0EH6v5hTUCH2L9qHo4NDsTCBy0CmJsPoeMOBSGInltL3F8DGlp7XX2BK6cUqrpNML0leFd+bqLAAtDh6wgHqM860rXjWFu4TaWvph+ENE+243JKEMzA/O0ANnkFTme4aogSuOiqTbgfFmqzpJN0t/6JNqX70LIlFyQk3amvEtzuyej+S9RwYf5jmu9PWScQyvhHS2C9lRea9OwIDAQAB",
"oauth2": {
"client_id": "258123725523-h9bfbasesfqg203rorq4prvnb29qlr13.apps.googleusercontent.com",
"scopes": ["email", "openid", "profile"]
},
"omnibox": {
"keyword": "@d"
},
"icons": {
"16": "icon_16.png"
},
"background": {
"service_worker": "workers/service-worker.js",
"type": "module"
},
"action": {
"default_title": "Log in"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"storage",
"alarms",
"webNavigation",
"tabs",
"offscreen",
"identity",
"sidePanel"
],
"host_permissions": ["https://*/*"],
"content_scripts": [
{
"matches": ["https://*/*"],
"js": ["content/html2canvas.min.js"],
"run_at": "document_start"
},
{
"matches": ["https://*/*"],
"js": ["content/content.js"],
"run_at": "document_idle"
},
{
"matches": ["http://localhost:5174/*"],
"js": ["content/content.js"],
"run_at": "document_idle"
}
]
}