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": "Whisper to ChatGPT",
"version": "1.2.29",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"description": "Prompt with your voice to ChatGPT in your Chrome browser using Whisper API with a button click.",
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icon128.png",
"default_popup": "index.html"
},
"permissions": [
"storage"
]
}