Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

Co je Autoscroll : Automatic Page Scrolling?

Autoscroll : Automatic Page Scrolling je rozšíření Chrome vyvinuté Emil Vinod, a jeho hlavní funkcí je „An extension to help scroll a webpage“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Autoscroll : Automatic Page Scrolling

Stáhněte si soubory rozšíření Autoscroll : Automatic Page Scrolling ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

Základní Informace o Rozšíření

Název Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
Oficiální URL https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
Popis An extension to help scroll a webpage
Velikost souboru 191 KB
Počet instalací 46
Aktuální Verze 0.0.1
Poslední Aktualizace 2024-01-23
Datum Vydání 2023-11-23
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář Emil Vinod
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://sites.google.com/view/autoscrollguide/home
URL Stránky Nápovědy https://sites.google.com/view/autoscrollguide/home
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}