YouTube Ad Mute

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

什麼是YouTube Ad Mute?

YouTube Ad Mute是由bgdaewalkman開發的Chrome擴展程式,該擴展的主要功能是“Automatically mutes the volume of YouTube ads. One of the options for distributors.”。

擴展截圖

screenshot

下載YouTube Ad Mute擴展crx文件

下載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
官方網址 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"
    }
}