YouTube Ad Mute

Automatically mutes the volume of YouTube ads. One of the options for distributors.

YouTube Ad Muteคืออะไร?

YouTube Ad Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bgdaewalkman และคุณลักษณะหลักของมันคือ "Automatically mutes the volume of YouTube ads. One of the options for distributors."

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

screenshot

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

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

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

                        YouTubeの広告の音量を自動的にミュートにします.配信などでYouTubeを安心して利用するための選択肢の一つになればと思います.
Automatically mutes the volume of YouTube ads. One of the options for distributors.

他の拡張機能などを用いてYouTubeのカラースキームを変更すると正しく動作しないことがあります.
If you change the color scheme of YouTube using other extensions, this extension may not work properly.


Release notes

--- v2.0.0 ---
Adopted a new logic!!!

Thanks to user's review, I was able to notice the bug. If you have any requests, please review it!

--- v1.0.3 ---
Improved stability
--- v1.0.2 ---
Fixed a bug that mute is canceled without permission.
--- v1.0.1 ---
Support chages in video quelity.
Remove some logs for developper.
--- v1.0.0 ---
Released.                    

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

ชื่อ YouTube Ad Mute YouTube Ad Mute
ID joeknkdeifkdnappekcfcejdmoickdfl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-ad-mute/joeknkdeifkdnappekcfcejdmoickdfl
คำอธิบาย Automatically mutes the volume of YouTube ads. One of the options for distributors.
ขนาดไฟล์ 64.36 KB
จำนวนการติดตั้ง 989
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2021-08-22
วันที่เผยแพร่ 2020-10-12
คะแนน 4.65/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา bgdaewalkman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ttak0422/utamita
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Ad Mute",
    "description": "Automatically mutes the volume of YouTube ads. One of the options for distributors.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png"
        },
        "default_title": "YouTubeAdVolumeController"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}