Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Apa itu Youtube Skip Videos?

Youtube Skip Videos adalah ekstensi Chrome yang dikembangkan oleh Megroplan, dan fitur utamanya adalah "This extension gives you the possibility to skip Youtube autoplay videos".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Youtube Skip Videos

Unduh file ekstensi Youtube Skip Videos dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
URL Resmi https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Deskripsi This extension gives you the possibility to skip Youtube autoplay videos
Ukuran File 171 KB
Jumlah Instalasi 26
Versi Saat Ini 1.1.3
Terakhir Diperbarui 2019-06-27
Tanggal Publikasi 2019-06-27
Penilaian 4.86/5 Total 7 Penilaian
Pengembang Megroplan
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}