Overcast: Mark as Played

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

Overcast: Mark as Played क्या है?

Overcast: Mark as Played Steve Grunwell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a "Mark as Played" button to podcast episodes on Overcast.fm."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Overcast: Mark as Played एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Overcast: Mark as Played Overcast: Mark as Played
ID gaeeolkmbpimllholhblmckdccmlbhnd
आधिकारिक URL https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd
विवरण Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
फ़ाइल का आकार 11 KB
स्थापना संख्या 197
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-11-19
प्रकाशन तिथि 2020-07-07
डेवलपर Steve Grunwell
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/stevegrunwell/overcast-mark-as-played
सहायता पृष्ठ URL https://github.com/stevegrunwell/overcast-mark-as-played/issues
समर्थित भाषाएँ 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\/*"
    ]
}