Auto Scroll

Easily scroll to the top and the bottom of current page

¿Qué es Auto Scroll?

Auto Scroll es una extensión de Chrome desarrollada por Gareth Ng, y su función principal es "Easily scroll to the top and the bottom of current page".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Auto Scroll

Descarga archivos de extensión Auto Scroll en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website.

By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling.

Users can also hide the button in the popup.

Enjoy your long page surfing!

Open source: https://github.com/garethng/GoToTop                    

Información Básica de la Extensión

Nombre Auto Scroll Auto Scroll
ID cmbpfcapjacpbmehmemljdilabjnlfhb
URL Oficial https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb
Descripción Easily scroll to the top and the bottom of current page
Tamaño del Archivo 63.8 KB
Cantidad de Instalaciones 403
Versión Actual 1.2.0
Última Actualización 2022-09-30
Fecha de Publicación 2021-12-30
Calificación 3.80/5 Total de 5 Calificaciones
Desarrollador Gareth Ng
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/garethng/GoToTop
Idiomas Soportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.2.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "jQuery.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}