-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
83 lines (83 loc) · 2.12 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
{
"manifest_version": 3,
"name": "Parsnip",
"version": "1.7.4",
"description": "Easily chat with your Google Docs, PDFs or websites",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"512": "icons/icon-512.png",
"1024": "icons/icon-1024.png"
},
"action":{
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"512": "icons/icon-512.png",
"1024": "icons/icon-1024.png"
}
},
"commands": {
"multi-tab-search": {
"suggested_key": {
"default": "Alt+Shift+F"
},
"description": "Search across all tabs"
},
"single-tab-search": {
"suggested_key": {
"default": "Alt+F"
},
"description": "Search across single tab"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./libs/readability.max.js", "content/search.js"],
"css": ["content/search.css"],
"run_at": "document_end"
}
],
"oauth2": {
"client_id": "896570358624-gaopt79akj3j0uf43v3j17vq8dtn75oh.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/presentations",
"https://www.googleapis.com/auth/drive"
]
},
"host_permissions": ["*://*/*"],
"web_accessible_resources": [
{
"resources": ["font/*"],
"matches": ["<all_urls>"]
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"trial_tokens": [
"AoISqTnw6JByaHy3Hk/y1ak7P0S0A6u/or/+1PoXW/oyounYlHA2YT6M7EkQkb9VxilscORZ1nvVqVcCPHU8vgsAAAB4eyJvcmlnaW4iOiJjaHJvbWUtZXh0ZW5zaW9uOi8vZ2tuZWNrY2RhZWxncGdkamhjb2NhZW9wa29pZ2dhbmMiLCJmZWF0dXJlIjoiQUlQcm9tcHRBUElGb3JFeHRlbnNpb24iLCJleHBpcnkiOjE3NjA0ODYzOTl9"
],
"background": {
"service_worker": "worker.js",
"type": "module"
},
"permissions": [
"tabs",
"storage",
"identity",
"scripting",
"activeTab",
"sidePanel",
"aiLanguageModelOriginTrial"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com"
}
}