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": "Speech to Text for ChatGPT",
"version": "0.0.7",
"description": "Adds a speech to text microphone into the ChatGPT website.",
"icons": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
},
"content_scripts": [
{
"js": [
"dist\/bundle.js"
],
"matches": [
"https:\/\/chatgpt.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/mic.png",
"assets\/styles.css"
],
"matches": [
"https:\/\/chatgpt.com\/*"
]
}
]
}