返回首頁 

Greasy Fork is available in English.

拼题A pintia 强制解除粘贴限制(PTA)

用来解除PTA禁止复制粘贴的功能(拼题A、pintia、PTA、程序设计类实验辅助教学##、PROGRAMMING TEACHING ASSISTANT)

  1. // ==UserScript==// @name 拼题A pintia 强制解除粘贴限制(PTA)// @namespace http://tampermonkey.net/// @version 0.1// @description 用来解除PTA禁止复制粘贴的功能(拼题A、pintia、PTA、程序设计类实验辅助教学##、PROGRAMMING TEACHING ASSISTANT)// @author NellPoi// @match https://pintia.cn/problem-sets/*/exam/problems/*// @icon https://www.google.com/s2/favicons?sz=64&domain=pintia.cn// @grant none// @license MIT// ==/UserScript==(function () {'use strict';const original = EventTarget.prototype.addEventListener;EventTarget.prototype.addEventListener = function (type, listener) {if (type === "input" && listener.toString().includes("粘贴")) {return;}original.call(this, type, listener);};})();