您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Verwijdert de commentaar sectie op tweakers.net
当前为
// ==UserScript== // @name Verwijder commentaar op tweakers.net // @name:en Remove comments on tweakers.net // @namespace https://github.com/HiddenKn // @version 0.1 // @description Verwijdert de commentaar sectie op tweakers.net // @description:en Removes the comment section on tweakers.net // @author HiddenKn // @match http://tweakers.net/nieuws/* // @match https://tweakers.net/nieuws/* // @upgrade https://gist.github.com/HiddenKn/0e1c2ba69cb250f6e1033267cfb1e8a4/raw/remove_comments_tweakers.user.js // @grant none // ==/UserScript== (function() { 'use strict'; var commentColumn = document.getElementById("commentColumn"); if(commentColumn){ commentColumn.remove(); console.info("Remove comments on tweakers.net userscript: Removed comments."); } else { console.error("Remove comments on tweakers.net userscript: An error occured during the removal of the comments section."); } })();