Greasy Fork is available in English.
解除批改网的粘贴限制。
当前为
// ==UserScript==
// @name 去他妈的批改网
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解除批改网的粘贴限制。
// @author Kirawii
// @match https://www.pigai.org/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('paste', event => event.stopPropagation(), true);
console.log('粘贴限制已解除');
})();