Podrest

Turn a page into a podcast

什么是Podrest?

Podrest是由https://getpodrest.com开发的Chrome扩展程序,该扩展的主要功能是“Turn a page into a podcast”。

扩展截图

screenshot
screenshot

下载Podrest扩展crx文件

下载Podrest扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Podrest is a service with which you can convert a web article, blog and news into a podcast so that you can listen to them on the go.
This extension converts the current web page into a podcast episode with a few clicks.

To signup, to listen to converted episode or to subscribe to your podcast, go to 
https://www.getpodrest.com/

Note: When you convert a page with this extension, you will see a desktop notification as long as you use Windows or macOS (Linus is not supported). In case you don't see any notification
1. Go to chrome://flags/#enable-system-notifications and disable it.
2. If 1. doesn't solve, allow notifications from Google Chrome in OS settings.


* Currently only English is supported on this extension. If you look for more language support, please use WEB version (www.getpodrest.com).                    

扩展基本信息

名称 Podrest Podrest
ID oglfmkknlllemohcompfdlmikcafdjhe
官方URL https://chromewebstore.google.com/detail/podrest/oglfmkknlllemohcompfdlmikcafdjhe
简介 Turn a page into a podcast
文件大小 2.62 MB
安装次数 37
当前版本 0.2.1
更新时间 2022-05-27
上架时间 2021-12-28
开发者 https://getpodrest.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.getpodrest.com
帮助页面URL https://podrest.featurebase.app/
隐私政策页面URL https://sunny-church-4f2.notion.site/Privacy-Policy-dd142e7effb14ede8eeed8c8b3ffb6cb
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Podrest",
    "manifest_version": 3,
    "version": "0.2.1",
    "description": "Turn a page into a podcast",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Turn a page into podcasts",
        "default_icon": {
            "16": "logo16.png",
            "24": "logo24.png",
            "32": "logo32.png"
        }
    },
    "permissions": [
        "activeTab",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}