Overcast: Mark as Played

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

Qu'est-ce que Overcast: Mark as Played ?

Overcast: Mark as Played est une extension Chrome développée par Steve Grunwell, et sa fonction principale est "Adds a "Mark as Played" button to podcast episodes on Overcast.fm.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Overcast: Mark as Played

Téléchargez les fichiers d'extension Overcast: Mark as Played au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
URL Officiel https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
Description Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Taille du Fichier 11 KB
Nombre d'Installations 197
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-11-19
Date de Publication 2020-07-07
Développeur Steve Grunwell
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/stevegrunwell/overcast-mark-as-played
URL de la Page d'Aide https://github.com/stevegrunwell/overcast-mark-as-played/issues
Langues Prises en Charge 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\/*"
    ]
}