Disable Overscroll History

Prevent horizontal scrolling from triggering forward / backward page navigation.

Disable Overscroll History क्या है?

Disable Overscroll History codesmith32 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevent horizontal scrolling from triggering forward / backward page navigation."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Disable Overscroll History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}