Youtube Autoclose Ads
Automatically close ads on youtube videos after an amount of seconds.
Cos'è Youtube Autoclose Ads?
Youtube Autoclose Ads è un'estensione di Chrome sviluppata da Gabriel Duarte, e la sua funzione principale è "Automatically close ads on youtube videos after an amount of seconds.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Autoclose Ads
Scarica i file di estensione Youtube Autoclose Ads 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
Automatically close ads on youtube videos after an amount of seconds (default to 5 seconds). You can change the seconds on the settings page of the extension (chrome://extensions) But why not just use a normal ad-block? An ad-block completly removes all sorts of ads on youtube, making the video creator not get any money with monetization. This extension allow you to set a minimum time in which the ad will be displayed, and after that time, the ad will be closed automatically, allowing the content creator to get monetization on the video.
Informazioni di Base sull'Estensione
Nome | Youtube Autoclose Ads |
ID | mppjhhbajcciljocgbadbhbgphjfdmhj |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj |
Descrizione | Automatically close ads on youtube videos after an amount of seconds. |
Dimensione del File | 722 KB |
Conteggio Installazioni | 2,427 |
Versione Corrente | 1.2.3 |
Ultimo Aggiornamento | 2022-07-12 |
Data di Pubblicazione | 2019-02-10 |
Valutazione | 4.46/5 Totale 13 Valutazioni |
Sviluppatore | Gabriel Duarte |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/GabrielDuarteM/youtube-autoclose-ads |
URL della Pagina di Aiuto | https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Autoclose Ads", "version": "1.2.3", "description": "Automatically close ads on youtube videos after an amount of seconds.", "author": "Gabriel Duarte", "homepage_url": "https:\/\/github.com\/GabrielDuarteM\/youtube-autoclose-ads", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "youtube-autoclose-ads.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html" } } |