GHacks Hide Older Comments - Final Version

Hides comments on ghacks.net that were made before the date of the article.

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        GHacks Hide Older Comments - Final Version
// @namespace   MickyFoley
// @description Hides comments on ghacks.net that were made before the date of the article.
// @include     *://*.ghacks.net/*
// @match       *://*.ghacks.net/*
// author       MickyFoley
// @license     GPL-3.0-only
// @version     2.0
// @grant       none
// ==/UserScript==

(function() {
    'use strict';

    // Month lookup object for short names to full names
    const monthShortToFullName = {
        "Jan": "January", "Feb": "February", "Mar": "March", "Apr": "April", "May": "May", "Jun": "June",
        "Jul": "July", "Aug": "August", "Sep": "September", "Oct": "October", "Nov": "November", "Dec": "December"
    };

    // Month lookup object for full names to numbers
    const monthFullNameToNumber = {
        "January": 0, "February": 1, "March": 2, "April": 3, "May": 4, "June": 5,
        "July": 6, "August": 7, "September": 8, "October": 9, "November": 10, "December": 11
    };

    // Extract the article date dynamically from the page
    const articleDateDiv = document.querySelector('.post-subtitle-meta_left_date-published');
    if (!articleDateDiv) return;

    const rawArticleDate = articleDateDiv.textContent.trim();
    let [articleMonth, articleDay, articleYear] = rawArticleDate.replace(',', '').split(' ');
    articleMonth = monthFullNameToNumber[monthShortToFullName[articleMonth]];
    const articleDateObj = new Date(Number(articleYear), articleMonth, Number(articleDay));

    // Iterate through comments and hide them if they were made before the article's date
    const comments = document.querySelectorAll('li.comment');
    comments.forEach(comment => {
        const dateDivText = comment.querySelector('div.comment-item__header div').textContent;
        const dateMatch = dateDivText.match(/said on (\w+) (\d+), (\d+) at/);
        if (!dateMatch) return;

        const [, commentMonth, commentDay, commentYear] = dateMatch;
        const commentDateObj = new Date(Number(commentYear), monthFullNameToNumber[commentMonth], Number(commentDay));

        if (commentDateObj < articleDateObj) {
            comment.style.display = 'none';
        }
    });
})();