Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
Vad är Auto Scroll Extension?
Auto Scroll Extension är en Chrome-tillägg utvecklad av https://071yoon.github.io, och dess huvudfunktion är "Auto Scroller for Chrome to help user scroll automatically".
Tilläggsskärmbilder
Ladda ner Auto Scroll Extension-förlängningens CRX-fil
Ladda ner Auto Scroll Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
Officiell webbadress | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
Beskrivning | Auto Scroller for Chrome to help user scroll automatically |
Filstorlek | 84.15 KB |
Antal Installationer | 383 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2023-09-05 |
Publiceringsdatum | 2023-09-04 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://071yoon.github.io |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |