我想在所有访问过的网站上阻止执行所有html classname“neterror”。
有没有办法做到这一点? 可以使用firefox插件greasemonkey加载的脚本(在这种情况下是哪个脚本?)或类似的东西?
感谢。
答案 0 :(得分:0)
不是遍历pageload上的每个元素,而是更好地附加style
标记;不需要连续的Javascript观察添加到DOM的新元素。
安装您选择的用户脚本管理器,例如Tampermonkey,并写下这样的内容:
// ==UserScript==
// @name Remove neterror
// @namespace na
// @include *
// @grant none
// ==/UserScript==
document.head.appendChild(document.createElement('style'))
.textContent = `
.neterror {
display: none;
}
`;