Disable Overscroll History

Prevent horizontal scrolling from triggering forward / backward page navigation.

¿Qué es Disable Overscroll History?

Disable Overscroll History es una extensión de Chrome desarrollada por codesmith32, y su función principal es "Prevent horizontal scrolling from triggering forward / backward page navigation.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Disable Overscroll History

Descarga archivos de extensión Disable Overscroll History 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

                        Since Chrome 80, horizontal overscroll navigation has - for now - become impossible to disable (due to the removal of the overscroll-history-navigation flag; see https://issuetracker.google.com/u/1/issues/172341945)

This extension simply utilizes the `overscroll-behavior` CSS property to prevent overscroll navigation to help avoid frustration and accidental data loss.

Notice: You will need to refresh tabs after install to apply behavior. Specific websites may also opt back in to navigation behavior by force-overriding `overscroll-behavior` (not likely but possible). The plugin may also not run on certain built-in browser pages, like chrome://settings, where you will still see overscroll navigation occur. The aim of this plugin is to override the default behavior for most websites to help avoid frustration and data loss where possible without excessive permissions. This plugin uses a single tiny CSS file.                    

Información Básica de la Extensión

Nombre Disable Overscroll History Disable Overscroll History
ID nlojpfaejoflmdlgbeohpidmnajmemhb
URL Oficial https://chromewebstore.google.com/detail/disable-overscroll-histor/nlojpfaejoflmdlgbeohpidmnajmemhb
Descripción Prevent horizontal scrolling from triggering forward / backward page navigation.
Tamaño del Archivo 10.14 KB
Cantidad de Instalaciones 148
Versión Actual 1.0
Última Actualización 2024-01-07
Fecha de Publicación 2024-01-07
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador codesmith32
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0",
    "name": "Disable Overscroll History",
    "description": "Prevent horizontal scrolling from triggering forward \/ backward page navigation.",
    "content_security_policy": {
        "extension_pages": "default-src 'none'; style-src 'self';"
    },
    "permissions": [],
    "content_scripts": [
        {
            "css": [
                "css\/styles.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png"
    }
}