Greasy Fork is available in English.
暴力解除知乎复制限制
// ==UserScript==
// @name 知乎复制粘贴暴力解除
// @namespace -
// @version 0.1
// @description 暴力解除知乎复制限制
// @author elelohe
// @match https://www.zhihu.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.body.contentEditable='true';
document.designMode='on';
// Your code here...
})();