Back to the Top

Scroll to the top of the page

¿Qué es Back to the Top?

Back to the Top es una extensión de Chrome desarrollada por marinadecroon, y su función principal es "Scroll to the top of the page".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Back to the Top

Descarga archivos de extensión Back to the Top 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 browser extension (add-on) for Google Chrome that allows you to quickly get back to the top and/or bottom of a page.                    

Información Básica de la Extensión

Nombre Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
URL Oficial https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Descripción Scroll to the top of the page
Tamaño del Archivo 14.1 KB
Cantidad de Instalaciones 160
Versión Actual 1.0
Última Actualización 2022-04-18
Fecha de Publicación 2022-04-18
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador marinadecroon
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://sites.google.com/view/toptoscroll/home
Idiomas Soportados en
manifest.json
{
    "background": {
        "service_worker": "sw.js"
    },
    "description": "Scroll to the top of the page",
    "name": "Back to the Top",
    "short_name": "up",
    "version": "1.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/avroraext.com",
    "action": {
        "default_icon": "icons\/icon_128.png"
    },
    "icons": {
        "128": "icons\/icon_128.png",
        "64": "icons\/icon_64.png",
        "32": "icons\/icon_32.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_32.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}