移除 MAC 手势前进后退
全局移除 Mac 手势前进后退 by mscststs
Details
Authormscststs
LicenseNo License
Categoryuserstyle
Created
Updated
Size480 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name 全局移除Mac 前进后退手势
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document regexp(".*") {
/* 在此插入代码... */
html,body,* {
overscroll-behavior-x: none !important;
/* overscroll-behavior-y: none !important; */
}
html,body {
overscroll-behavior-x: none !important;
overscroll-behavior-y: none !important;
}
}