Verwijder commentaar op tweakers.net

Verwijdert de commentaar sectie op tweakers.net

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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.");
    }
})();