Stop Youtube Autoplay

This extension allows you to disable autoplay by default on Youtube

Stop Youtube Autoplay क्या है?

Stop Youtube Autoplay Joseph Feld द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to disable autoplay by default on Youtube"।

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

screenshot
screenshot

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

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

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

                        This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup.

Feel free to contact me if you find any issues or have any suggestions.

This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.                    

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

नाम Stop Youtube Autoplay Stop Youtube Autoplay
ID npcghnpganhnghapekiicaeiobnhbbfa
आधिकारिक URL https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa
विवरण This extension allows you to disable autoplay by default on Youtube
फ़ाइल का आकार 41.84 KB
स्थापना संख्या 5,000
वर्तमान संस्करण 1.3
अंतिम अपडेट 2018-10-29
प्रकाशन तिथि 2018-10-29
रेटिंग 3.02/5 कुल 60 रेटिंग्स
डेवलपर Joseph Feld
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Youtube Autoplay",
    "short_name": "No Autoplay",
    "description": "This extension allows you to disable autoplay by default on Youtube",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "matches": [
            "https:\/\/www.youtube.com\/watch*",
            "http:\/\/www.youtube.com\/watch*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}