Auto Ad Mute
This mutes youtube ad audio.
Cos'è Auto Ad Mute?
Auto Ad Mute è un'estensione di Chrome sviluppata da jasoberai, e la sua funzione principale è "This mutes youtube ad audio.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Ad Mute
Scarica i file di estensione Auto Ad Mute in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Auto Ad Mute |
ID | hljoencdappihmlkilchbhcjoldimkbn |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-ad-mute/hljoencdappihmlkilchbhcjoldimkbn |
Descrizione | This mutes youtube ad audio. |
Dimensione del File | 39.86 KB |
Conteggio Installazioni | 1,570 |
Versione Corrente | 1.8 |
Ultimo Aggiornamento | 2017-10-29 |
Data di Pubblicazione | 2017-10-29 |
Valutazione | 3.07/5 Totale 45 Valutazioni |
Sviluppatore | jasoberai |
jasoberai2@gmail.com | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/jasmeeto/auto-ad-mute |
Lingue Supportate | 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" ] } |