Youtube Ad Muter

Mutes ads while still supporting your favourite YouTubers

What is Youtube Ad Muter?

Youtube Ad Muter is a Chrome extension developed by nopynospy, and its main feature is "Mutes ads while still supporting your favourite YouTubers".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Youtube Ad Muter Extension CRX File

Download Youtube Ad Muter 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

                        In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.                    

Extension Basic Information

Name Youtube Ad Muter Youtube Ad Muter
ID kpaapfjgeapgppbkcgnogpdadofkeobc
Official URL https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc
Description Mutes ads while still supporting your favourite YouTubers
File Size 88.41 KB
Installation Count 489
Current Version 1.0.0
Last Updated 2023-06-18
Publish Date 2023-06-18
Rating 4.50/5 Total 4 Ratings
Developer nopynospy
Email [email protected]
Payment Type free
Extension Website https://github.com/nopynospy/youtube_ad_muter
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Muter",
    "description": "Mutes ads while still supporting your favourite YouTubers",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Youtube Ad Muter",
        "default_icon": "icon.png"
    },
    "permissions": [],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}