Greasy Fork 支持简体中文。

2dfan去除复制限制

2dfan去除复制限制,可以任意复制内容。

// ==UserScript==
// @name         2dfan去除复制限制
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  2dfan去除复制限制,可以任意复制内容。
// @author       tianshi
// @match        *://*.2dfan.com/*
// @match        *://*.galge.fun/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=2dfan.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
	var newVersion = 'v0.1';
    var t=function(t){t.stopPropagation(),t.stopImmediatePropagation&&t.stopImmediatePropagation()};
    ["copy","cut","contextmenu","selectstart","mousedown","mouseup","keydown","keypress","keyup"].forEach(function(e){document.documentElement.addEventListener(e,t,{capture:!0})})
    // Your code here...
})();