Greasy Fork is available in English.

我知道百度知道

方便从百度知道摘录内容

// ==UserScript==
// @name         我知道百度知道
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  方便从百度知道摘录内容
// @author       YF
// @match        https://zhidao.baidu.com/question/*
// @grant        none
// ==/UserScript==

var e = document.querySelectorAll('#qb-content span');
var re = /[a-z0-9]{11}/;
for (const i of e) {
  if (re.test(i.className) && (i.offsetWidth == 1 && i.clientWidth == 1)) {
      i.parentNode.removeChild(i);
  }
}