YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

Apa itu YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension adalah ekstensi Chrome yang dikembangkan oleh Krysp_Coder, dan fitur utamanya adalah "Automatically Skip ads on YouTube. This is not an ad blocker".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Background Ad Skip Extension

Unduh file ekstensi YouTube Background Ad Skip Extension 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

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

Informasi Dasar Ekstensi

Nama YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
URL Resmi https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Deskripsi Automatically Skip ads on YouTube. This is not an ad blocker
Ukuran File 17.34 KB
Jumlah Instalasi 867
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2018-06-20
Tanggal Publikasi 2018-06-20
Penilaian 3.33/5 Total 3 Penilaian
Pengembang Krysp_Coder
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 Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}