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)
-   -   Tech chrome extension - gift for gfy friends (https://gfy.com/showthread.php?t=1274143)

deonbell 08-02-2017 06:47 PM

chrome extension - gift for gfy friends
 
I notice some of you are sad and depressed. This may help your life This is not my code, but I find it and modify.

I get tired of seeing pornhub on reddit every week. So I find a simple extension that replaces words. You can modify to what you want.


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(/pornhub/gi, '[advertisement]');

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

manifest.json
Code:

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


TheDynasty 08-02-2017 07:15 PM

Could solve a decade old problem


All times are GMT -7. The time now is 01:06 PM.

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