Disable Overscroll History

Prevent horizontal scrolling from triggering forward / backward page navigation.

Disable Overscroll History là gì?

Disable Overscroll History là một tiện ích mở rộng Chrome được phát triển bởi codesmith32, và tính năng chính của nó là "Prevent horizontal scrolling from triggering forward / backward page navigation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Disable Overscroll History

Tải xuống các tệp mở rộng Disable Overscroll History dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Disable Overscroll History Disable Overscroll History
ID nlojpfaejoflmdlgbeohpidmnajmemhb
URL Chính Thức https://chromewebstore.google.com/detail/disable-overscroll-histor/nlojpfaejoflmdlgbeohpidmnajmemhb
Mô tả Prevent horizontal scrolling from triggering forward / backward page navigation.
Kích Thước Tệp 10.14 KB
Số Lần Cài Đặt 148
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2024-01-07
Ngày Phát Hành 2024-01-07
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển codesmith32
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}