我使用tampermonkey在chrome上使用我的代码时收到错误。我真的很喜欢它不显示其他数字,也就是错误。发生错误的是无法读取属性'parentNode'为null但代码正在运行。
// ==UserScript==
// @name Chrome Remove recent tabs
// @namespace http://tampermonkey.net/
// @version .1
// @description Removes recently visited tabs
// @author You
// @match https://*/*
// ==/UserScript==
var del = document.getElementById('most-visited');
del.parentNode.removeChild(del);