Audioread: Ultra-Realistic Text-to-Speech
Convert articles, PDFs, emails, or any text into audio
什么是Audioread: Ultra-Realistic Text-to-Speech?
Audioread: Ultra-Realistic Text-to-Speech是由https://audioread.com开发的Chrome扩展程序,该扩展的主要功能是“Convert articles, PDFs, emails, or any text into audio”。
扩展截图
下载Audioread: Ultra-Realistic Text-to-Speech扩展crx文件
下载Audioread: Ultra-Realistic Text-to-Speech扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you feel like you don't have enough time to read? Listen instead!
Audioread converts any article, PDF, email, or pasted text into a podcast using natural-sounding text-to-speech. It creates your personal RSS feed that you can subscribe to in most podcast apps, such as Apple Podcasts, Google Podcasts, Overcast, Podcast Addict, and more.
- Ultra-realistic AI voices. Sample articles are available on Audioread.com.
- Send articles from iOS or Android.
- Listen in a podcast app or browser. 扩展基本信息
| 名称 | |
| ID | fblchjbbkkaoobkhhbloehgkpdlomido |
| 官方URL | https://chromewebstore.google.com/detail/audioread-ultra-realistic/fblchjbbkkaoobkhhbloehgkpdlomido |
| 简介 | Convert articles, PDFs, emails, or any text into audio |
| 文件大小 | 1.77 MB |
| 安装次数 | 9,869 |
| 当前版本 | 3.5.2 |
| 更新时间 | 2023-04-20 |
| 上架时间 | 2020-11-24 |
| 评分 | 4.05/5 共44次评分 |
| 开发者 | https://audioread.com |
| 电子邮箱 | [email protected] |
| 付费类型 | in_app |
| 扩展官网 | https://audioread.com |
| 帮助页面URL | https://www.tidio.com/talk/gzpx0hksecqrxjt9t2vix680h5aiodfj |
| 隐私政策页面URL | https://docs.google.com/document/d/1geVMGxOLLo9wHTyhSvlo0AxGQV50d7WH7ZpkWRt2_9I/edit?usp=sharing |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Convert articles, PDFs, emails, or any text into audio",
"version": "3.5.2",
"name": "Audioread: Ultra-Realistic Text-to-Speech",
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.audiblogs.com\/*",
"*:\/\/*.audioread.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"browser_action": {
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png"
},
"web_accessible_resources": [
"content.styles.css",
"icon-128.png",
"icon-34.png",
"loading.svg"
],
"commands": {
"open": {
"suggested_key": {
"windows": "Alt+Shift+1",
"mac": "Alt+Shift+1",
"chromeos": "Alt+Shift+1",
"linux": "Alt+Shift+1"
},
"description": "Open Popup"
},
"send": {
"suggested_key": {
"windows": "Alt+Shift+2",
"mac": "Alt+Shift+2",
"chromeos": "Alt+Shift+2",
"linux": "Alt+Shift+2"
},
"description": "Send Article"
}
},
"permissions": [
"activeTab",
"contextMenus",
"storage",
"*:\/\/*.audiblogs.com\/*",
"*:\/\/*.audioread.com\/*"
],
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self'"
} | |