Greasy Fork is available in English.
综合两个脚本,破解飞书的复制和右键限制,让你的飞书更好用
当前为
// ==UserScript==
// @name 改进飞书体验
// @namespace https://bytedance.com
// @version 0.1
// @description 综合两个脚本,破解飞书的复制和右键限制,让你的飞书更好用
// @author Tom-yang
// @match *://*.feishu.cn/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=feishu.cn
// @grant none
// @license MIT
// ==/UserScript==
(function () {
console.log('改进飞书体验已启动');
// 修改右键限制
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
);
};
// 修改网络请求以破解复制限制
XMLHttpRequest.prototype._open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function (...args) {
const [ method, url ] = args;
if (method !== 'POST' || !url.includes('space/api/suite/permission/document/actions/state/')) {
return this._open(...args);
}
this.addEventListener("readystatechange", function() {
if (this.readyState !== 4) return;
let response = this.response;
try {
response = JSON.parse(response);
} catch(e) {};
console.log('debug:', response);
if (response.data.actions.copy === 1) {
return;
}
response.data.actions.copy = 1;
Object.defineProperty(this, 'response', {
get() {
return response;
}
});
Object.defineProperty(this, 'responseText', {
get() {
return JSON.stringify(response);
}
});
}, false);
return this._open(...args);
};
})();