Icebucket Filter for Facebook

Removes posts including IceBucketChallenge hashtags

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name       Icebucket Filter for Facebook
// @namespace  http://www.mystler.eu/
// @version    0.1
// @description  Removes posts including IceBucketChallenge hashtags
// @match      https://www.facebook.com/*
// @copyright  2014, Florian Meißner
// @require http://code.jquery.com/jquery-1.11.1.min.js
// ==/UserScript==

var filter = ["ALSIceBucketChallenge", "IceBucketChallenge", "StrikeOutALS"];

// Make jQuery :contains case insensitive
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
    return function( elem ) {
        return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
    };
});

$(document).ready(function() {
    setInterval(function() {
        // Find filter words and remove FB post completely
        var i;
        for	(i = 0; i < filter.length; i++) {
            $("span:contains('"+filter[i]+"')").parents("div[data-ft*='fbfeed_location']").remove();
        }
    }, 500);
});