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.」です。
拡張機能のスクリーンショット
Disable Overscroll History拡張機能のCRXファイルをダウンロード
Disable Overscroll History拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |