Ad Accelerator

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

Ad Accelerator là gì?

Ad Accelerator là một tiện ích mở rộng Chrome được phát triển bởi rkarpinski, và tính năng chính của nó là "Detects if a video ad is playing, mutes the video and dramatically increases speed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ad Accelerator

Tải xuống các tệp mở rộng Ad Accelerator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ad Accelerator Ad Accelerator
ID gpboiedfklodfhngobidfjecdpmccehg
URL Chính Thức https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg
Mô tả Detects if a video ad is playing, mutes the video and dramatically increases speed.
Kích Thước Tệp 472 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 0.0.0.4
Cập Nhật Lần Cuối 2024-03-06
Ngày Phát Hành 2023-11-15
Đánh Giá 4.46/5 Tổng số 69 Đánh Giá
Nhà Phát Triển rkarpinski
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/rkk3/ad-accelerator
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}