Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

What is Youtube Skip Videos?

Youtube Skip Videos is a Chrome extension developed by Megroplan, and its main feature is "This extension gives you the possibility to skip Youtube autoplay videos".

Extension Screenshots

screenshot

Download Youtube Skip Videos Extension CRX File

Download Youtube Skip Videos 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

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

Extension Basic Information

Name Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
Official URL https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Description This extension gives you the possibility to skip Youtube autoplay videos
File Size 171 KB
Installation Count 26
Current Version 1.1.3
Last Updated 2019-06-27
Publish Date 2019-06-27
Rating 4.86/5 Total 7 Ratings
Developer Megroplan
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}