Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Co to jest Youtube Skip Videos?

Youtube Skip Videos to rozszerzenie Chrome opracowane przez Megroplan, a jego główną funkcją jest „This extension gives you the possibility to skip Youtube autoplay videos”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Skip Videos

Pobierz pliki rozszerzeń Youtube Skip Videos w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Opis This extension gives you the possibility to skip Youtube autoplay videos
Rozmiar pliku 171 KB
Liczba instalacji 26
Aktualna Wersja 1.1.3
Ostatnia Aktualizacja 2019-06-27
Data Publikacji 2019-06-27
Ocena 4.86/5 Łącznie 7 Oceny
Deweloper Megroplan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}