Ad Accelerator

Detects if a video ad is playing, mutes the video and dramatically increases speed.

Apa itu Ad Accelerator?

Ad Accelerator adalah ekstensi Chrome yang dikembangkan oleh rkarpinski, dan fitur utamanya adalah "Detects if a video ad is playing, mutes the video and dramatically increases speed.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Ad Accelerator

Unduh file ekstensi Ad Accelerator 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

                        Skip through annoying advertisements instantly on sites like Youtube & Hulu. 

* Automatically utilize skip ad button
* Automatically mute ads
* Automatically increases ad speed to the maximum allowed speed

 Skip through ads with Ad Accelerator and spend more time watching videos. 

Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.                    

Informasi Dasar Ekstensi

Nama Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
URL Resmi https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
Deskripsi Detects if a video ad is playing, mutes the video and dramatically increases speed.
Ukuran File 472 KB
Jumlah Instalasi 10,000
Versi Saat Ini 0.0.0.4
Terakhir Diperbarui 2024-03-06
Tanggal Publikasi 2023-11-15
Penilaian 4.46/5 Total 69 Penilaian
Pengembang rkarpinski
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/rkk3/ad-accelerator
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ad Accelerator",
    "version": "0.0.0.4",
    "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.",
    "permissions": [
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/www.hulu.com\/watch\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/www.hulu.com\/watch\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/images\/icon16.png",
        "32": "assets\/images\/icon32.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    }
}