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": "MicBuddy \u2013 Speak to Type", "version": "1.0.1", "description": "Voice-to-text input for any text field on the web using native Web Speech API", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "commands": { "start-voice-input": { "suggested_key": { "default": "Alt+V", "mac": "Alt+V" }, "description": "Start voice dictation in focused input field" } }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "utils.js", "speech.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_title": "MicBuddy \u2013 Speak to Type", "default_popup": "popup.html" } }