Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Youtube Skip Videos क्या है?

Youtube Skip Videos Megroplan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension gives you the possibility to skip Youtube autoplay videos"।

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

screenshot

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

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

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

                        Just add a song to the blacklist and it will disappear forever the Youtube auto-play song lists.
Any suggestion is appreciated.                    

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

नाम Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
विवरण This extension gives you the possibility to skip Youtube autoplay videos
फ़ाइल का आकार 171 KB
स्थापना संख्या 26
वर्तमान संस्करण 1.1.3
अंतिम अपडेट 2019-06-27
प्रकाशन तिथि 2019-06-27
रेटिंग 4.86/5 कुल 7 रेटिंग्स
डेवलपर Megroplan
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Skip Videos",
    "description": "This extension gives you the possibility to skip Youtube autoplay videos",
    "version": "1.1.3",
    "browser_action": {
        "default_icon": "img\/youtube.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-3.1.1.min.js",
                "contentYoutube.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}