Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Was ist Youtube Skip Videos?

Youtube Skip Videos ist eine Chrome-Erweiterung, die von Megroplan entwickelt wurde, und ihr Hauptmerkmal ist "This extension gives you the possibility to skip Youtube autoplay videos".

Erweiterungsscreenshots

screenshot

Youtube Skip Videos-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Skip Videos-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
Offizielle URL https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Beschreibung This extension gives you the possibility to skip Youtube autoplay videos
Dateigröße 171 KB
Installationsanzahl 26
Aktuelle Version 1.1.3
Letztes Update 2019-06-27
Veröffentlichungsdatum 2019-06-27
Bewertung 4.86/5 Insgesamt 7 Bewertungen
Entwickler Megroplan
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}