anhnt9919 / Block Porn

// ==UserScript==
// @name         Block Porn
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @license MIT
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    ban_keywords = ["sex", "jav", "hentai", "xxx", "porn", "pussy", "ass", "butt", "tits", "boobs", "ntr", "ecchi", "kidmo", "vlxx"]
    allow_keywords = ["java", "javascript", "python"]
    if (window.location.href.match(new RegExp(allow_keywords.join("|"))) != null){
        // Continue
    }
    else if (window.location.href.match(new RegExp(ban_keywords.join("|"))) != null){
        window.location.replace("http://stackoverflow.com");
    }
    // Your code here...
})();