AdMute

Mutes ads on YouTube

AdMute là gì?

AdMute là một tiện ích mở rộng Chrome được phát triển bởi dev.jerrywu, và tính năng chính của nó là "Mutes ads on YouTube".

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

screenshot

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

Tải xuống các tệp mở rộng AdMute 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

                        This extension automatically mutes the tab when an ads starts playing on YouTube.

If you're tired of loud, annoying ads, but still want to support YouTube creators, installing this will help alleviate your auditory trauma!                    

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

Tên AdMute AdMute
ID lphpiojcgblffagolamjknonieggkela
URL Chính Thức https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela
Mô tả Mutes ads on YouTube
Kích Thước Tệp 16.3 KB
Số Lần Cài Đặt 90
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-02-18
Ngày Phát Hành 2023-02-11
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dev.jerrywu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AdMute",
    "description": "Mutes ads on YouTube",
    "version": "0.0.2",
    "author": "Jerry Wu",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "libs\/arrive.min.js",
                "youtube.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "icons": {
        "16": "icons\/enabled\/icon16.png",
        "48": "icons\/enabled\/icon48.png",
        "128": "icons\/enabled\/icon128.png"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ]
}