Inspect and view changes in SayAI source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "SayAI",
"version": "1.0.20",
"default_locale": "en",
"author": "Nodetics",
"description": "Adds voice recording and spoken answers to ChatGPT UI.",
"permissions": [
"storage"
],
"background": {
"service_worker": "js/background.js"
},
"host_permissions": [
"https://api.openai.com/*",
"https://chatgpt.com/*"
],
"content_scripts": [
{
"matches": [
"https://chatgpt.com/*"
],
"js": [
"js/util.js",
"js/main.js",
"js/recorder.js",
"js/texttospeech.js",
"js/chatgptresponsegrabber.js"
],
"css": [
"css/custom.css"
],
"run_at": "document_start"
}
],
"icons": {
"96": "images/voicechatgpt-icon-96.png"
},
"web_accessible_resources": [
{
"resources": [
"images/*.svg",
"js/listener.js"
],
"matches": [
"https://chatgpt.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}