困扰我挺久了,之前在设置里面没翻到。
7 Likes
你是L站百科全书吗,啥都懂哈哈哈
2 Likes
不是,我是CCB
1 Like
如果有现成的油猴脚本就好了
1 Like
// ==UserScript==
// @name Linux.do 屏蔽按钮
// @namespace http://tampermonkey.net/
// @version 0.1
// @description ?!
// @author 6512345
// @match https://linux.do/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 创建一个样式表
var style = document.createElement('style');
style.type = 'text/css';
// 隐藏所有 class 为 "button" 的元素
style.innerHTML = '.buttons { display: none !important; }';
// 将样式表添加到文档的头部
document.head.appendChild(style);
})();
这个在65这里好像可以
此话题已在最后回复的 30 天后被自动关闭。不再允许新回复。