Greasy Fork is available in English.
批改网
// ==UserScript==
// @name 批改网 复制粘贴启用
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 批改网
// @author MinkeSKL
// @match *://*.pigai.org/*?c=v2*&a=write*
// @match *://*.pigai.org/*?c=v2*&a=view*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 等待页面完全加载后执行
window.onload = function() {
// 设置document.onpaste属性
document.onpaste = 1;
console.log('document.onpaste is set to 1');
};
})();