-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (46 loc) · 1.06 KB
/
manifest.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"manifest_version": 3,
"name": "Google Drive Offline",
"version": "1.93.1",
"description": "Google Drive Offline lets you access, view, and edit your Google Docs, Sheets, and Slides without an internet connection.",
"permissions": [
"cookies",
"webRequest",
"webNavigation",
"scripting",
"storage",
"activeTab"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://ums.lpu.in/lpuums/*",
"https://www.instagram.com/*",
"https://www.facebook.com/*",
"https://facebook.com/*",
"https://m.facebook.com/*"
],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"action": {
"default_icon": "icons/48.png",
"default_title": "Session Logger"
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}