AdMute
Mutes ads on YouTube
Wat is AdMute?
AdMute is een Chrome-extensie ontwikkeld door dev.jerrywu, en de belangrijkste functie is "Mutes ads on YouTube".
Extensie Screenshots
Download het CRX-bestand van de extensie AdMute
Download AdMute-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | AdMute |
ID | lphpiojcgblffagolamjknonieggkela |
Officiële URL | https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela |
Beschrijving | Mutes ads on YouTube |
Bestandsgrootte | 16.3 KB |
Aantal Installaties | 90 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2023-02-18 |
Publicatiedatum | 2023-02-11 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | dev.jerrywu |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |