AdMute

Mutes ads on YouTube

AdMuteคืออะไร?

AdMute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dev.jerrywu และคุณลักษณะหลักของมันคือ "Mutes ads on YouTube"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AdMute

ดาวน์โหลดไฟล์ส่วนขยาย AdMute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AdMute AdMute
ID lphpiojcgblffagolamjknonieggkela
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela
คำอธิบาย Mutes ads on YouTube
ขนาดไฟล์ 16.3 KB
จำนวนการติดตั้ง 90
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2023-02-18
วันที่เผยแพร่ 2023-02-11
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา dev.jerrywu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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\/*"
    ]
}