Overcast: Mark as Played

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

Co to jest Overcast: Mark as Played?

Overcast: Mark as Played to rozszerzenie Chrome opracowane przez Steve Grunwell, a jego główną funkcją jest „Adds a "Mark as Played" button to podcast episodes on Overcast.fm.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Overcast: Mark as Played

Pobierz pliki rozszerzeń Overcast: Mark as Played w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
Oficjalny URL https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
Opis Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Rozmiar pliku 11 KB
Liczba instalacji 197
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-11-19
Data Publikacji 2020-07-07
Deweloper Steve Grunwell
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/stevegrunwell/overcast-mark-as-played
Adres URL Strony Pomocy https://github.com/stevegrunwell/overcast-mark-as-played/issues
Obsługiwane Języki 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\/*"
    ]
}