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",
"name": "SpeakGPT",
"description": "ChatGPT Voice for GPT3.5 and Non-Plus Subscriber",
"version": "1.0.28",
"manifest_version": 3,
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"host_permissions": [
"*:\/\/chat.openai.com\/*",
"*:\/\/chatgpt.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"ConfigManager.js",
"UUID.js",
"WebSocketRequest.js",
"SpeakManager.js",
"TextUtility.js",
"EventNarator.js",
"ContentScriptController.js",
"contentscript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"inject.js"
],
"matches": [
"https:\/\/chatgpt.com\/*"
]
}
],
"permissions": [
"storage"
]
}