AdMute

Mutes ads on YouTube

Was ist AdMute?

AdMute ist eine Chrome-Erweiterung, die von dev.jerrywu entwickelt wurde, und ihr Hauptmerkmal ist "Mutes ads on YouTube".

Erweiterungsscreenshots

screenshot

AdMute-Erweiterungs-CRX-Datei herunterladen

Laden Sie AdMute-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name AdMute AdMute
ID lphpiojcgblffagolamjknonieggkela
Offizielle URL https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela
Beschreibung Mutes ads on YouTube
Dateigröße 16.3 KB
Installationsanzahl 90
Aktuelle Version 0.0.2
Letztes Update 2023-02-18
Veröffentlichungsdatum 2023-02-11
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler dev.jerrywu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}