Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
Qu'est-ce que Auto Scroll Extension ?
Auto Scroll Extension est une extension Chrome développée par https://071yoon.github.io, et sa fonction principale est "Auto Scroller for Chrome to help user scroll automatically".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Auto Scroll Extension
Téléchargez les fichiers d'extension Auto Scroll Extension 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
Auto Scroller for Chrome for automation This Extension helps user to use scroller as automation form. for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! And in addition, extension remembers your last option for scrolling, and will remain as that option.
Informations de Base sur l'Extension
Nom | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
URL Officiel | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
Description | Auto Scroller for Chrome to help user scroll automatically |
Taille du Fichier | 84.15 KB |
Nombre d'Installations | 383 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2023-09-05 |
Date de Publication | 2023-09-04 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://071yoon.github.io |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Scroll Extension", "description": "Auto Scroller for Chrome to help user scroll automatically", "manifest_version": 3, "version": "1.0.2", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |