Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Vad är Youtube Skip Videos?

Youtube Skip Videos är en Chrome-tillägg utvecklad av Megroplan, och dess huvudfunktion är "This extension gives you the possibility to skip Youtube autoplay videos".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Skip Videos-förlängningens CRX-fil

Ladda ner Youtube Skip Videos-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Beskrivning This extension gives you the possibility to skip Youtube autoplay videos
Filstorlek 171 KB
Antal Installationer 26
Aktuell Version 1.1.3
Senast Uppdaterad 2019-06-27
Publiceringsdatum 2019-06-27
Betyg 4.86/5 Totalt 7 Betyg
Utvecklare Megroplan
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}