Inspect and view changes in Two Way Voice for ChatGPT 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
{
"name": "Two Way Voice for ChatGPT",
"version": "1.7.1",
"manifest_version": 3,
"description": "This extension for ChatGPT allows you to ask using voice and listen to response.",
"icons": {
"16": "icons/chatgpt-voice-conversation-logo-16.png",
"32": "icons/chatgpt-voice-conversation-logo-32.png",
"48": "icons/chatgpt-voice-conversation-logo-48.png",
"128": "icons/chatgpt-voice-conversation-logo-128.png"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https://chat.openai.com/c/*",
"https://chat.openai.com/c",
"https://chat.openai.com/",
"https://chat.openai.com/?model=*",
"https://chat.openai.com/chat",
"https://chat.openai.com/chat/*",
"https://chatgpt.com/c/*",
"https://chatgpt.com/c",
"https://chatgpt.com/",
"https://chatgpt.com/?model=*",
"https://chatgpt.com/chat",
"https://chatgpt.com/chat/*",
"https://chatgpt.com/g/*",
"https://chatgpt.com/g"
],
"js": [
"chatgpt_conversation.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}