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": "Voice To Mail: transcribe voice into email",
"description": "Use voice typing. Dictate into the most popular Email Services: Gmail, Yahoo Mail and Outlook (web).",
"version": "0.0.2",
"version_name": "0.0.2 beta",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Voice To Mail",
"default_icon": "logo.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/mail.yahoo.com\/*",
"https:\/\/outlook.live.com\/mail\/*"
],
"js": [
"contentScript.js"
]
}
]
}