Overcast: Mark as Played

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

What is Overcast: Mark as Played?

Overcast: Mark as Played is a Chrome extension developed by Steve Grunwell, and its main feature is "Adds a "Mark as Played" button to podcast episodes on Overcast.fm.".

Extension Screenshots

screenshot

Download Overcast: Mark as Played Extension CRX File

Download Overcast: Mark as Played extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
Official URL https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
Description Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
File Size 11 KB
Installation Count 197
Current Version 1.0.1
Last Updated 2020-11-19
Publish Date 2020-07-07
Developer Steve Grunwell
Email [email protected]
Payment Type free
Extension Website https://github.com/stevegrunwell/overcast-mark-as-played
Help Page URL https://github.com/stevegrunwell/overcast-mark-as-played/issues
Supported Languages 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\/*"
    ]
}