Overcast: Mark as Played

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

Was ist Overcast: Mark as Played?

Overcast: Mark as Played ist eine Chrome-Erweiterung, die von Steve Grunwell entwickelt wurde, und ihr Hauptmerkmal ist "Adds a "Mark as Played" button to podcast episodes on Overcast.fm.".

Erweiterungsscreenshots

screenshot

Overcast: Mark as Played-Erweiterungs-CRX-Datei herunterladen

Laden Sie Overcast: Mark as Played-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
Offizielle URL https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
Beschreibung Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Dateigröße 11 KB
Installationsanzahl 197
Aktuelle Version 1.0.1
Letztes Update 2020-11-19
Veröffentlichungsdatum 2020-07-07
Entwickler Steve Grunwell
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/stevegrunwell/overcast-mark-as-played
Hilfeseite URL https://github.com/stevegrunwell/overcast-mark-as-played/issues
Unterstützte Sprachen 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\/*"
    ]
}