Youtube Ad Muter

Mutes ads while still supporting your favourite YouTubers

Youtube Ad Muter là gì?

Youtube Ad Muter là một tiện ích mở rộng Chrome được phát triển bởi nopynospy, và tính năng chính của nó là "Mutes ads while still supporting your favourite YouTubers".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.                    

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

Tên Youtube Ad Muter Youtube Ad Muter
ID kpaapfjgeapgppbkcgnogpdadofkeobc
URL Chính Thức https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc
Mô tả Mutes ads while still supporting your favourite YouTubers
Kích Thước Tệp 88.41 KB
Số Lần Cài Đặt 489
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-06-18
Ngày Phát Hành 2023-06-18
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển nopynospy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nopynospy/youtube_ad_muter
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Muter",
    "description": "Mutes ads while still supporting your favourite YouTubers",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Youtube Ad Muter",
        "default_icon": "icon.png"
    },
    "permissions": [],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}