YT Skip Ads
This extension attempts to skip the YouTube ads automatically
Qu'est-ce que YT Skip Ads ?
YT Skip Ads est une extension Chrome développée par Furqan, et sa fonction principale est "This extension attempts to skip the YouTube ads automatically".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YT Skip Ads
Téléchargez les fichiers d'extension YT Skip 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
This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks: 1. Auto-skips those 5 second ads on YouTube: YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.
Informations de Base sur l'Extension
Nom | YT Skip Ads |
ID | lahknfhfeikbpljolkheigimmcfhplga |
URL Officiel | https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga |
Description | This extension attempts to skip the YouTube ads automatically |
Taille du Fichier | 17.31 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-09-14 |
Date de Publication | 2021-09-14 |
Développeur | Furqan |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Skip Ads", "description": "This extension attempts to skip the YouTube ads automatically", "version": "1.0", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "YouTube Skip Ads" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "src\/css\/main.css" ], "js": [ "src\/js\/dom-watcher.js" ], "run_at": "document_end" } ] } |