您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes gallery and magnifier buttons from the page
- // ==UserScript==
- // @name Remove Gallery and Magnifier Buttons
- // @namespace yourNamespace
- // @version 1.0
- // @description Removes gallery and magnifier buttons from the page
- // @match *://*/*
- // @grant GM_addStyle
- // ==/UserScript==
- (function() {
- 'use strict';
- // Hide gallery button
- GM_addStyle('.pv-float-bar-button-gallery { display: none !important; }');
- // Hide magnifier button
- GM_addStyle('.pv-float-bar-button-magnifier { display: none !important; }');
- })();