AdMute

Mutes ads on YouTube

什么是AdMute?

AdMute是由dev.jerrywu开发的Chrome扩展程序,该扩展的主要功能是“Mutes ads on YouTube”。

扩展截图

screenshot

下载AdMute扩展crx文件

下载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\/*"
    ]
}