Ad Accelerator

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

Wat is Ad Accelerator?

Ad Accelerator is een Chrome-extensie ontwikkeld door rkarpinski, en de belangrijkste functie is "Detects if a video ad is playing, mutes the video and dramatically increases speed.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Ad Accelerator

Download Ad Accelerator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
Officiële URL https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
Beschrijving Detects if a video ad is playing, mutes the video and dramatically increases speed.
Bestandsgrootte 472 KB
Aantal Installaties 10,000
Huidige Versie 0.0.0.4
Laatst Bijgewerkt 2024-03-06
Publicatiedatum 2023-11-15
Beoordeling 4.46/5 Totaal 69 Beoordelingen
Ontwikkelaar rkarpinski
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/rkk3/ad-accelerator
Ondersteunde Talen 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"
    }
}