让你的飞书更好用
// ==UserScript==
// @name 飞书的文本复制|右键菜单
// @namespace https://bytedance.com
// @version 0.2
// @description 让你的飞书更好用
// @author tudou-skyblue
// @match *://*.feishu.cn/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=feishu.cn
// @grant none
// @license MIT
// ==/UserScript==
;(function () {
// 移除所有已注册的copy监听器(需要在页面加载前执行)
const _addEventListener = EventTarget.prototype.addEventListener;
EventTarget.prototype.addEventListener = function(type, listener, options) {
if (type === 'copy') {
return; // 阻止注册
}
return _addEventListener.call(this, type, listener, options);
};
// 修改右键限制
const bodyAddEventListener = document.body.addEventListener
document.body.addEventListener = function (type, listener, options) {
bodyAddEventListener.call(
document.body,
type,
event => {
if (type === "contextmenu") {
return true
}
return listener(event)
},
options
)
}
})()