Overcast: Mark as Played
Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Cos'è Overcast: Mark as Played?
Overcast: Mark as Played è un'estensione di Chrome sviluppata da Steve Grunwell, e la sua funzione principale è "Adds a "Mark as Played" button to podcast episodes on Overcast.fm.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Overcast: Mark as Played
Scarica i file di estensione Overcast: Mark as Played in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Overcast: Mark as Played |
ID | gaeeolkmbpimllholhblmckdccmlbhnd |
URL Ufficiale | https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd |
Descrizione | Adds a "Mark as Played" button to podcast episodes on Overcast.fm. |
Dimensione del File | 11 KB |
Conteggio Installazioni | 197 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-11-19 |
Data di Pubblicazione | 2020-07-07 |
Sviluppatore | Steve Grunwell |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/stevegrunwell/overcast-mark-as-played |
URL della Pagina di Aiuto | https://github.com/stevegrunwell/overcast-mark-as-played/issues |
Lingue Supportate | 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\/*" ] } |