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",
"$schema": "manifest.schema.json",
"name": "Voicy - Transcribe & Translate",
"description": "Instantly transcribe and translate your voice into any text field. Seamless, highly accurate speech-to-text for any website.",
"version": "1.0.0",
"manifest_version": 3,
"background": {
"service_worker": "background\/background.js"
},
"action": {
"default_popup": "popup\/popup.html",
"default_title": "Voicy: Activate AI Voice Typing & Translation"
},
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/api.openai.com\/"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/index.js"
],
"css": [
"content\/index.css"
]
}
],
"icons": {
"16": "icons\/16x16.png",
"32": "icons\/32x32.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
}
}