Auto Scroll Extension

Auto Scroller for Chrome to help user scroll automatically

Wat is Auto Scroll Extension?

Auto Scroll Extension is een Chrome-extensie ontwikkeld door https://071yoon.github.io, en de belangrijkste functie is "Auto Scroller for Chrome to help user scroll automatically".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto Scroll Extension

Download Auto Scroll Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Auto Scroll Extension Auto Scroll Extension
ID ppkbgpllhklbjlmmncjjgogcdphkaaho
Officiële URL https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho
Beschrijving Auto Scroller for Chrome to help user scroll automatically
Bestandsgrootte 84.15 KB
Aantal Installaties 383
Huidige Versie 1.0.2
Laatst Bijgewerkt 2023-09-05
Publicatiedatum 2023-09-04
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://071yoon.github.io
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}