GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Is there a way to block certain keywords on this forum? (https://gfy.com/showthread.php?t=1293273)

EliteWebmaster 01-30-2018 05:19 PM

Is there a way to block certain keywords on this forum?
 
I know we can block users but is there any feature where we can block certain words any mention of it in the topic headline, it will automatically be blocked?

I would love to block any with "Trump" in the topic headline :1orglaugh

Seriously, this forum has gotten to the point where all i see is race baiting or pro/anti trump threads:Oh crap

Zeiss 01-30-2018 05:37 PM

Got me interested...

deonbell 01-31-2018 03:05 AM

I did not write this. I copy from internet.
For Chrome, Replaces Trump everywhere in browser

content.js

Code:

var elements = document.getElementsByTagName('*');

for (var i = 0; i < elements.length; i++) {
    var element = elements[i];

    for (var j = 0; j < element.childNodes.length; j++) {
        var node = element.childNodes[j];

        if (node.nodeType === 3) {
            var text = node.nodeValue;
            var replacedText = text.replace(/Trump/gi, '[avoidthis]');

            if (replacedText !== text) {
                element.replaceChild(document.createTextNode(replacedText), node);
            }
        }
    }
}

manifest.json
Code:

{
"manifest_version": 2,
    "name": "[goodbyelosers]",
    "description": "[replaces trump with avoidthis]",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "*://*/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}

readme.md
Code:

This is your Chrome extension which replaces a word or phrase with a different word or phrase.

CaptainHowdy 01-31-2018 09:00 AM

Just exercise your natural capacity to ignore a certain subject ...


All times are GMT -7. The time now is 11:11 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123