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
官方網址 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"
    }
}