Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down
Qu'est-ce que Auto Youtube Shorts Scroll Down ?
Auto Youtube Shorts Scroll Down est une extension Chrome développée par wonkyungup, et sa fonction principale est "Auto Youtube Shorts Scroll Down".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Auto Youtube Shorts Scroll Down
Téléchargez les fichiers d'extension Auto Youtube Shorts Scroll Down 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
A switch is created at the top inside the video. If there is no switch, it will refresh the page. It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late. The code has been posted on Github. If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond. Version 1.0.7 - ADD: dislike show - FIX: scroll Event check, to many event
Informations de Base sur l'Extension
Nom | Auto Youtube Shorts Scroll Down |
ID | bfofdkanfmkkbngkmhmcjichambccene |
URL Officiel | https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene |
Description | Auto Youtube Shorts Scroll Down |
Taille du Fichier | 274 KB |
Nombre d'Installations | 258 |
Version Actuelle | 1.0.7 |
Dernière Mise à Jour | 2023-06-25 |
Date de Publication | 2023-02-23 |
Évaluation | 2.67/5 Total 3 Évaluations |
Développeur | wonkyungup |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Youtube Shorts Scroll Down", "manifest_version": 3, "version": "1.0.7", "permissions": [ "tabs" ], "description": "Auto Youtube Shorts Scroll Down", "icons": { "16": "16x16.png", "32": "32x32.png", "48": "48x48.png" }, "action": { "default_icon": { "16": "16x16.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/shorts\/*" ], "js": [ "content.js" ] } ] } |