Ad Accelerator

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

Was ist Ad Accelerator?

Ad Accelerator ist eine Chrome-Erweiterung, die von rkarpinski entwickelt wurde, und ihr Hauptmerkmal ist "Detects if a video ad is playing, mutes the video and dramatically increases speed.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Ad Accelerator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ad Accelerator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
Offizielle URL https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
Beschreibung Detects if a video ad is playing, mutes the video and dramatically increases speed.
Dateigröße 472 KB
Installationsanzahl 10,000
Aktuelle Version 0.0.0.4
Letztes Update 2024-03-06
Veröffentlichungsdatum 2023-11-15
Bewertung 4.46/5 Insgesamt 69 Bewertungen
Entwickler rkarpinski
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/rkk3/ad-accelerator
Unterstützte Sprachen 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"
    }
}