Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Cos'è Youtube Skip Videos?

Youtube Skip Videos è un'estensione di Chrome sviluppata da Megroplan, e la sua funzione principale è "This extension gives you the possibility to skip Youtube autoplay videos".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Skip Videos

Scarica i file di estensione Youtube Skip Videos in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Descrizione This extension gives you the possibility to skip Youtube autoplay videos
Dimensione del File 171 KB
Conteggio Installazioni 26
Versione Corrente 1.1.3
Ultimo Aggiornamento 2019-06-27
Data di Pubblicazione 2019-06-27
Valutazione 4.86/5 Totale 7 Valutazioni
Sviluppatore Megroplan
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}