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": "TalkScribe AI - New Gen Speech-to-Text (STT)",
"short_name": "TalkScribe AI",
"version": "1.7",
"description": "Voice dictation with stable microphone connection. Speak to type on any webpage.",
"permissions": [
"tabs",
"storage",
"scripting",
"activeTab",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "worker.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"featureFlags.js",
"fingerprint_canonical.js",
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {
"16": "icons\/icon-gray-16.png",
"32": "icons\/icon-gray-32.png",
"48": "icons\/icon-gray-48.png",
"128": "icons\/icon-gray-128.png"
},
"default_title": "TalkScribe AI"
},
"icons": {
"16": "icons\/icon-gray-16.png",
"32": "icons\/icon-gray-32.png",
"48": "icons\/icon-gray-48.png",
"128": "icons\/icon-gray-128.png"
},
"commands": {
"toggle-dictation": {
"suggested_key": {
"default": "Ctrl+I",
"mac": "Command+I"
},
"description": "Toggle voice dictation"
},
"reset-microphone": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "Command+Q"
},
"description": "Reset microphone state"
},
"toggle-language": {
"suggested_key": {
"default": "Alt+Q",
"mac": "MacCtrl+Q"
},
"description": "Toggle between current and previous language"
},
"toggle-dictation-pad": {
"suggested_key": {
"default": "Ctrl+M",
"mac": "Command+M"
},
"description": "Toggle Dictation Pad"
}
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"languages.js",
"overlay.js",
"audio.js",
"zenStartTone.wav",
"zenStopTone.wav",
"icons\/warning.wav",
"dictation_pad.js",
"dictation_pad.css"
],
"matches": [
"<all_urls>"
]
}
]
}