Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

Vad är Autoscroll : Automatic Page Scrolling?

Autoscroll : Automatic Page Scrolling är en Chrome-tillägg utvecklad av Emil Vinod, och dess huvudfunktion är "An extension to help scroll a webpage".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Autoscroll : Automatic Page Scrolling-förlängningens CRX-fil

Ladda ner Autoscroll : Automatic Page Scrolling-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

                        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                    

Grundläggande Information om Tillägg

Namn Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
Officiell webbadress https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
Beskrivning An extension to help scroll a webpage
Filstorlek 191 KB
Antal Installationer 46
Aktuell Version 0.0.1
Senast Uppdaterad 2024-01-23
Publiceringsdatum 2023-11-23
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare Emil Vinod
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://sites.google.com/view/autoscrollguide/home
Hjälpsida URL https://sites.google.com/view/autoscrollguide/home
Stödda Språk 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"
    ]
}