Greasy Fork is available in English.
解除批改网的粘贴、右键和选择限制
当前为
// ==UserScript==
// @license MIT
// @name 批改网粘贴限制解除
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 解除批改网的粘贴、右键和选择限制
// @author CR.Zhu
// @match https://www.pigai.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
disablePasteRestrictions();
const observer = new MutationObserver(disablePasteRestrictions);
observer.observe(document.body, { childList: true, subtree: true });
});
function disablePasteRestrictions() {
try {
$('.no_paste, .no_paste *').unbind();
$('#contents').unbind();
document.onpaste = null;
console.log('批改网粘贴限制已解除');
} catch (e) {
console.error('解除限制时出错:', e);
}
}
})();