Overcast: Mark as Played

Adds a "Mark as Played" button to podcast episodes on Overcast.fm.

Overcast: Mark as Played là gì?

Overcast: Mark as Played là một tiện ích mở rộng Chrome được phát triển bởi Steve Grunwell, và tính năng chính của nó là "Adds a "Mark as Played" button to podcast episodes on Overcast.fm.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Overcast: Mark as Played

Tải xuống các tệp mở rộng Overcast: Mark as Played dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you've ever found yourself bouncing between podcast apps, your Overcast.fm history might be suggesting podcast episodes you've already heard.

This extension adds a "Mark as Played" button on the Overcast.fm site, making it easy to check-off the episodes you've already enjoyed.

Please note that this extension is in no way affiliated with Overcast or its owner; I'm simply a fan of (and premium subscriber to) the platform.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
URL Chính Thức https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
Mô tả Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Kích Thước Tệp 11 KB
Số Lần Cài Đặt 197
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2020-07-07
Nhà Phát Triển Steve Grunwell
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stevegrunwell/overcast-mark-as-played
URL Trang Trợ Giúp https://github.com/stevegrunwell/overcast-mark-as-played/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Overcast: Mark as Played",
    "description": "Adds a \"Mark as Played\" button to podcast episodes on Overcast.fm.",
    "version": "1.0.1",
    "author": "Steve Grunwell",
    "homepage_url": "https:\/\/github.com\/stevegrunwell\/overcast-mark-as-played",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/overcast.fm\/*"
            ],
            "css": [
                "src\/style.css"
            ],
            "js": [
                "src\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "src\/icon-16.png",
        "48": "src\/icon-48.png",
        "96": "src\/icon-96.png",
        "128": "src\/icon-128.png"
    },
    "permissions": [
        "*:\/\/overcast.fm\/*"
    ]
}