Ad Accelerator

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

What is Ad Accelerator?

Ad Accelerator is a Chrome extension developed by rkarpinski, and its main feature is "Detects if a video ad is playing, mutes the video and dramatically increases speed.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Ad Accelerator Extension CRX File

Download Ad Accelerator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
Official URL https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
Description Detects if a video ad is playing, mutes the video and dramatically increases speed.
File Size 472 KB
Installation Count 10,000
Current Version 0.0.0.4
Last Updated 2024-03-06
Publish Date 2023-11-15
Rating 4.46/5 Total 69 Ratings
Developer rkarpinski
Email [email protected]
Payment Type free
Help Page URL https://github.com/rkk3/ad-accelerator
Supported Languages 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"
    }
}