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",
"name": "Email Transcription",
"version": "1.0",
"description": "Speech-to-text transcription directly in your GMail client!",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting",
"storage"
],
"host_permissions": [
"https:\/\/mail.google.com\/"
],
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"*.map",
"icons\/start_icon.png",
"icons\/stop_icon.png",
"icons\/status.gif"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
]
}