Voicepods - Realistic Text to Speech
Bring words to realistic AI generated voice - Convert any written text on the web into speech.
什么是Voicepods - Realistic Text to Speech?
Voicepods - Realistic Text to Speech是由Voicepods开发的Chrome扩展程序,该扩展的主要功能是“Bring words to realistic AI generated voice - Convert any written text on the web into speech.”。
扩展截图
下载Voicepods - Realistic Text to Speech扩展crx文件
下载Voicepods - Realistic Text to Speech扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Voicepods enables you to listen to any text on any website with realistic AI generated Voices. Easily convert selected text or the entire page with one click and listen through the Chrome extension. It automatically syncs with your Voicepods account so that you can listen anywhere you go! Choose from over 24 voices in 10 languages including Dutch, French, German, Italian, Korean, Japanese, Turkish, Spanish (Latin American and European), Hindi (Written as English, or Hindi). - Listen to selected text in over 10 languages - Voicepods automagically extracts out the relevant parts in web pages so that the audio only contains the content of the website and not extras like navigation - Syncs with Voicepods so that you can listen anywhere you log in - Control the pace of the audio playback to your liking
扩展基本信息
名称 | Voicepods - Realistic Text to Speech |
ID | fihebcnndekipadhomlgaiajoipkophe |
官方URL | https://chromewebstore.google.com/detail/voicepods-realistic-text/fihebcnndekipadhomlgaiajoipkophe |
简介 | Bring words to realistic AI generated voice - Convert any written text on the web into speech. |
文件大小 | 1.66 MB |
安装次数 | 2,504 |
当前版本 | 0.1.0 |
更新时间 | 2019-08-20 |
上架时间 | 2019-08-19 |
评分 | 2.80/5 共5次评分 |
开发者 | Voicepods |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "description": "Bring words to realistic AI generated voice - Convert any written text on the web into speech.", "short_name": "Voicepods", "name": "Voicepods - Realistic Text to Speech", "version": "0.1.0", "browser_action": { "default_popup": "index.html", "default_title": "Voicepods - Realistic Text to Speech" }, "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "background": { "persistent": true, "scripts": [ "background.js", "jquery.js" ] }, "content_scripts": [ { "all_frames": false, "css": [ "swal.css" ], "js": [ "swal.js", "contentscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'", "permissions": [ "storage", "tabs", "contextMenus", "http:\/\/app.voicepods.com\/*" ], "web_accessible_resources": [ "confirmation.html" ] } |