-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
114 lines (114 loc) · 2.74 KB
/
Copy pathmanifest.json
File metadata and controls
114 lines (114 loc) · 2.74 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.10.7",
"description": "__MSG_appDescription__",
"permissions": [
"storage",
"cookies",
"offscreen",
"tabs",
"audio",
"contextMenus",
"downloads"
],
"host_permissions": [
"https://api.saypi.ai/*",
"https://www.saypi.ai/*"
],
"content_scripts": [
{
"matches": [
"https://pi.ai/*",
"https://claude.ai/*",
"https://chatgpt.com/*",
"https://chat.com/*",
"https://chat.openai.com/*"
],
"js": [
"public/saypi.user.js"
]
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"https://pi.ai/*",
"https://claude.ai/*",
"https://chatgpt.com/*",
"https://chat.com/*",
"https://chat.openai.com/*"
],
"js": [
"public/saypi.user.js"
]
}
],
"background": {
"service_worker": "public/background.js"
},
"offscreen": {
"document": "src/offscreen/media_offscreen.html",
"reasons": [
"USER_MEDIA",
"AUDIO_PLAYBACK"
],
"justification": "Microphone VAD and TTS playback under restrictive host-page CSP"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"icons": {
"16": "src/icons/bubble-16px.png",
"32": "src/icons/bubble-32px.png",
"48": "src/icons/bubble-48px.png",
"128": "src/icons/bubble-128px.png"
},
"web_accessible_resources": [
{
"resources": [
"public/silero_vad*.onnx",
"public/*.wasm",
"public/*.js",
"public/*.mjs",
"public/lucide.min.js",
"public/vad.worklet.bundle.js",
"public/vad.worklet.bundle.min.js",
"public/ort-wasm*",
"public/audio/*.mp3",
"public/icons/*.svg",
"public/icons/*.png",
"public/icons/logos/*.svg",
"public/icons/logos/*.png",
"src/icons/flags/*.svg",
"src/popup/*.svg",
"src/offscreen/media_offscreen.html",
"public/offscreen/media_coordinator.js",
"public/offscreen/vad_handler.js",
"public/offscreen/audio_handler.js",
"public/offscreen/media_offscreen.js",
"public/permissions/permissions-prompt.html",
"public/permissions/permissions-prompt.js",
"public/permissions/*.png",
"public/permissions/*.css"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"author": "Ross Cadogan",
"homepage_url": "https://www.saypi.ai",
"action": {
"default_title": "Say, Pi"
},
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "gecko@saypi.ai"
}
}
}