Ad Accelerator

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

什么是Ad Accelerator?

Ad Accelerator是由rkarpinski开发的Chrome扩展程序,该扩展的主要功能是“Detects if a video ad is playing, mutes the video and dramatically increases speed.”。

扩展截图

screenshot
screenshot
screenshot

下载Ad Accelerator扩展crx文件

下载Ad Accelerator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
官方URL https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
简介 Detects if a video ad is playing, mutes the video and dramatically increases speed.
文件大小 472 KB
安装次数 10,000
当前版本 0.0.0.4
更新时间 2024-03-06
上架时间 2023-11-15
评分 4.46/5 共69次评分
开发者 rkarpinski
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/rkk3/ad-accelerator
支持的语言 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"
    }
}