UAW: Anti Wang Wei by maomaolv

Block All Wang Wei by maomaolv

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         UAW: Anti Wang Wei by maomaolv
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Block All Wang Wei by maomaolv
// @author       VitoVan
// @match        https://*.v2ex.com/*
// @match        https://v2ex.com/*
// @grant        none
// ==/UserScript==

(async function() {
    'use strict';
    // Add Anti Class
    document.head.insertAdjacentHTML("beforeend", `<style type="text/css">.hideWW{background-color:black !important;color:black !important;text-shadow:none !important;pointer-events:none !important;}</style>`)
    // Check Anti List
    const todayUTCDate = new Date().getUTCDate();
    var wwUpdateDate = window.localStorage.getItem('wwUpdateDate');
    var wwUniText = '';
    if (wwUpdateDate != todayUTCDate) { // Need Update
        console.debug(`ANTI-WW: Updating List (${wwUpdateDate} / ${todayUTCDate})`);
        // Load Anti List
        const wwUniResp = await fetch(`${location.origin}/p/3SS1131M`);
        wwUniText = await wwUniResp.text();
        window.localStorage.setItem('wwUpdateDate', todayUTCDate);
        window.localStorage.setItem('wwUniText', wwUniText);
    } else {
        console.debug(`ANTI-WW: Use Local List (${wwUpdateDate} / ${todayUTCDate})`);
        wwUniText = window.localStorage.getItem('wwUniText');
    }
    const wwLinkList = wwUniText.match(/(\/t\/[0-9]+)/g);
    // Mark Links
    for (const link of document.links) {
        if (wwLinkList.includes(link.pathname)) {
            link.classList.add('hideWW');
            console.debug(`Found Link: ${link.pathname}`);
        }
    }
    // Mark Page
    if (wwLinkList.includes(document.location.pathname)) {
        console.debug(`Found Page: ${document.location.pathname}`);
        document.querySelector('#Main>.box').innerHTML = '<h1 style="background:white;color:black;height:500px;line-height:500px;font-size:100px;font-family: "PingFang SC">已屏蔽</h1>'
    }
})();