Youtube Autoclose Ads
Automatically close ads on youtube videos after an amount of seconds.
Qu'est-ce que Youtube Autoclose Ads ?
Youtube Autoclose Ads est une extension Chrome développée par Gabriel Duarte, et sa fonction principale est "Automatically close ads on youtube videos after an amount of seconds.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Autoclose Ads
Téléchargez les fichiers d'extension Youtube Autoclose Ads au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Youtube Autoclose Ads |
ID | mppjhhbajcciljocgbadbhbgphjfdmhj |
URL Officiel | https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj |
Description | Automatically close ads on youtube videos after an amount of seconds. |
Taille du Fichier | 722 KB |
Nombre d'Installations | 2,427 |
Version Actuelle | 1.2.3 |
Dernière Mise à Jour | 2022-07-12 |
Date de Publication | 2019-02-10 |
Évaluation | 4.46/5 Total 13 Évaluations |
Développeur | Gabriel Duarte |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/GabrielDuarteM/youtube-autoclose-ads |
URL de la Page d'Aide | https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues |
Langues Prises en Charge | 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" } } |