NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Copyer
// @namespace http://tampermonkey.net/
// @homepage https://github.com/maoger/Copyer
// @version 1.2.1
// @description 恢复被网站禁用的复制粘贴功能。
// @author maoger
// @include http*://*
// @updateURL https://openuserjs.org/meta/maoger/Copyer.meta.js
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.body.onselectstart = 'return true';
})();