Auto Ad Mute
This mutes youtube ad audio.
Was ist Auto Ad Mute?
Auto Ad Mute ist eine Chrome-Erweiterung, die von jasoberai entwickelt wurde, und ihr Hauptmerkmal ist "This mutes youtube ad audio.".
Erweiterungsscreenshots
Auto Ad Mute-Erweiterungs-CRX-Datei herunterladen
Laden Sie Auto Ad Mute-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
Code is available here as open source: [https://github.com/jasmeeto/auto-ad-mute] An extension that automatically mutes tabs while ad audio from YouTube is playing for those who want to support their favorite content creators without the noise. Relatively intuitive, the addon is enabled by default. Features: - Mutes ads - Can skip ads that are skippable (i.e. ones that show the 'Skip Ad' button) (Disabled by default) - Hides ad banners that appear in middle of videos by just moving them off screen
Grundlegende Informationen zur Erweiterung
Name | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
Offizielle URL | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
Beschreibung | This mutes youtube ad audio. |
Dateigröße | 39.86 KB |
Installationsanzahl | 1,570 |
Aktuelle Version | 1.8 |
Letztes Update | 2017-10-29 |
Veröffentlichungsdatum | 2017-10-29 |
Bewertung | 3.07/5 Insgesamt 45 Bewertungen |
Entwickler | jasoberai |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/jasmeeto/auto-ad-mute |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Ad Mute", "description": "This mutes youtube ad audio.", "version": "1.8", "icons": { "48": "icon_mute.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "libs\/jquery-3.1.0.min.js", "libs\/arrive.min.js", "contentScript.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Auto Mute Options" }, "background": { "scripts": [ "backgroundScript.js" ] }, "permissions": [ "tabs", "*:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |