批改?
// ==UserScript==
// @name 批改?
// @namespace http://tampermonkey.net/
// @version 0.6
// @description 干掉批改网禁止粘贴的限制
// @author Nanqian
// @match *://*.pigai.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=pigai.org
// @run-at document-idle
// @grant none
// ==/UserScript==
(function(){
document.onpaste = "";
})()