写自己的第一个油猴插件——解除复制限制
1在知乎页面测试 document.body.contentEditable='true'; document.designMode='on'; 2用油猴把这两句话写进去
// ==UserScript==
// @name zhihu复制粘贴暴力解除
// @namespace -
// @version 0.1
// @description 暴力解除zhihu复制限制
// @author elelohe
// @match https://www.zhihu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.body.contentEditable='true';
document.designMode='on';
// Your code here...
})();
3测试 成功 4参考 blog.csdn.net/crazy_rays/… 5油猴插件发布 greasyfork.org/zh-CN/scrip… 6展望 感觉为了复制导致知乎变得可编辑有点怪,想要更好的方法,既然文字可以拖出来,我觉得存在这种方法。