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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |