YoutubeAutoSkip
A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.
Qu'est-ce que YoutubeAutoSkip ?
YoutubeAutoSkip est une extension Chrome développée par AshleyTyagi, et sa fonction principale est "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YoutubeAutoSkip
Téléchargez les fichiers d'extension YoutubeAutoSkip 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
Now using manifest V3! A script to auto-click skips, the icon which is used was made by Pixel Perfect on https://www.flaticon.com/authors/pixel-perfect An extension with no user-interface which runs in the background and will effectively auto-skip ads on the site youtube.com by either shifting straight to the end of the advertisement or by either automatically pressing the skip button. Disclaimer this will not remove ads on the side of YouTube since it isn't an adblocker it simply auto-clicks skip or either it shifts your progress of watching the ad straight to the end, so you effectively skip it. Here is the link to the Github repository containing the code: https://github.com/oslohes123/YoutubeAutoSkip
Informations de Base sur l'Extension
Nom | YoutubeAutoSkip |
ID | jackpdpiimmbmbcpjoabcahggiaindac |
URL Officiel | https://chromewebstore.google.com/detail/youtubeautoskip/jackpdpiimmbmbcpjoabcahggiaindac |
Description | A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad. |
Taille du Fichier | 5.86 KB |
Nombre d'Installations | 51 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2022-09-26 |
Date de Publication | 2020-06-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | AshleyTyagi |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YoutubeAutoSkip", "version": "3.0", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "script.js" ] } ], "description": "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.", "icons": { "48": "icon.ico" } } |