-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.14 KB
/
manifest.json
File metadata and controls
48 lines (48 loc) · 1.14 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
47
48
{
"manifest_version": 3,
"name": "SnapCal",
"version": "1.0.0",
"description": "Extract event details from any page and create Google Calendar events with AI.",
"permissions": [
"activeTab",
"storage",
"identity",
"scripting"
],
"host_permissions": [
"https://snapcal-proxy.vercel.app/*",
"https://www.googleapis.com/*"
],
"background": {
"service_worker": "src/background.ts"
},
"action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"options_page": "src/options/index.html",
"oauth2": {
"client_id": "1079636021022-72p2ikr4dko4e11kvpc75j2b3l2k6244.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/calendar.events"
]
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"commands": {
"snap_analyze": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Snap page and analyze with AI"
}
}
}