得到错误但有效

时间:2017-09-20 17:21:51

标签: javascript tampermonkey

我使用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);

0 个答案:

没有答案