Sic 'Em 365 - Ignore

Hide posts by users on ignore list

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Sic 'Em 365 - Ignore
// @version      1.0
// @description  Hide posts by users on ignore list
// @author       trumpetbear
// @match        https://sicem365.com/forums/1/topics/*
// @match        http://sicem365.com/forums/1/topics/*
// @grant        none
// @namespace https://greasyfork.org/users/66085
// ==/UserScript==


/***** TO ADD A USER TO YOUR IGNORE LIST *****

Add the username exatly as it appears to the variable below. This is case sensitve.
Seperate multiple users with commas.

EXAMPLE:

var ignoreList = "UsernameOne,usernameTwo,User Name,User:Name Three";

*/

var ignoreList = "Brian Ethridge,trumpetbear,F5:Stewart";

var reload = true;
var url = window.location.href;

$( document ).ajaxComplete(function() {
    if (url != window.location.href) {
        reload = true;
        url = window.location.href;
    }
    hideIgnorePosts();
    reload = false;
});

function hideIgnorePosts() {
    if (ignoreList.length > 0){
        var posts = $(".postUsername");
        for (x=0;x<posts.length;x++) {
            if (reload && ignoreList.indexOf($(posts[x]).text()) > -1) {
                $($(".postBody")[x]).hide();
                $($(".postFooter")[x]).hide();
                $($(".postContent")[x]).append("<a class=\"tempLink\" onclick=\"javascript:$(this).hide();$($('.postBody')["+x+"]).show();$($('.postFooter')["+x+"]).show();\">View Post</a>");
            }
        }
    }
}