YouTube Autoplay Disabler

Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.

YouTube Autoplay Disabler क्या है?

YouTube Autoplay Disabler Luciano Ratamero द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done."।

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

screenshot

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

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

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

                        Free and open-sourced alternative for disabling YouTube's autoplay "feature"

Checks if YouTube autoplay is on and, if it is, disables it.

https://github.com/lucianoratamero/youtube-autoplay-disabler                    

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

नाम YouTube Autoplay Disabler YouTube Autoplay Disabler
ID mlebignjhimfeggkjhhgbhomibiplmem
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem
विवरण Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
फ़ाइल का आकार 366 KB
स्थापना संख्या 161
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2021-04-29
प्रकाशन तिथि 2018-06-15
रेटिंग 3.12/5 कुल 17 रेटिंग्स
डेवलपर Luciano Ratamero
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Autoplay Disabler",
    "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
    "version": "0.2.1",
    "icons": {
        "128": "icon-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-small.png"
    }
}