YouTube Ad Mute

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

YouTube Ad Mute क्या है?

YouTube Ad Mute bgdaewalkman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mutes the volume of YouTube ads. One of the options for distributors."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Ad Mute एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}