解除语雀复制限制
// ==UserScript== // @name yuque copy // @namespace http://tampermonkey.net/ // @version 0.1 // @description 解除语雀复制限制 // @author Ravenclaw // @match https://www.yuque.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @grant none // ==/UserScript== (function() { 'use strict'; window.addEventListener('copy', function(event) { event.stopImmediatePropagation(); }, true); })();