Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SayAI", "version": "1.0.19", "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:\/\/chat.openai.com\/*", "https:\/\/chatgpt.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*", "https:\/\/chat.openai.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\/*", "https:\/\/chat.openai.com\/*" ] } ] }