看网页有个陋习,习惯时不时就鼠标划拉一些关键词语或者段落看看,不过LinuxDo鼠标选中后会显示一个引用分享功能条,经常误操作生成草稿~
弄个油猴脚本,自动去掉,新建油猴脚本复制进去保存即可。
// ==UserScript==
// @name linuxDo屏蔽鼠标提示框
// @version 0.1
// @author zding
// @match *://linux.do/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function hideElements() {
document.querySelectorAll('.fk-d-menu__inner-content').forEach(el => el.style.display = 'none');
}
new MutationObserver(hideElements).observe(document.body, { childList: true, subtree: true });
})();