AdMute

Mutes ads on YouTube

What is AdMute?

AdMute is a Chrome extension developed by dev.jerrywu, and its main feature is "Mutes ads on YouTube".

Extension Screenshots

screenshot

Download AdMute Extension CRX File

Download AdMute extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name AdMute AdMute
ID lphpiojcgblffagolamjknonieggkela
Official URL https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela
Description Mutes ads on YouTube
File Size 16.3 KB
Installation Count 90
Current Version 0.0.2
Last Updated 2023-02-18
Publish Date 2023-02-11
Rating 4.00/5 Total 1 Ratings
Developer dev.jerrywu
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}