Disable Overscroll History

Prevent horizontal scrolling from triggering forward / backward page navigation.

Disable Overscroll History란 무엇입니까?

Disable Overscroll History은(는) codesmith32에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevent horizontal scrolling from triggering forward / backward page navigation."입니다.

확장 프로그램 스크린샷

screenshot

Disable Overscroll History 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Disable Overscroll History Disable Overscroll History
ID nlojpfaejoflmdlgbeohpidmnajmemhb
공식 URL https://chromewebstore.google.com/detail/disable-overscroll-histor/nlojpfaejoflmdlgbeohpidmnajmemhb
설명 Prevent horizontal scrolling from triggering forward / backward page navigation.
파일 크기 10.14 KB
설치 횟수 148
현재 버전 1.0
최근 업데이트 2024-01-07
출시 날짜 2024-01-07
평점 5.00/5 총 4 개의 평점
개발자 codesmith32
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}