Enhance your online well-being by blocking explicit content.
当前为
// ==UserScript==
// @name Internet Guardian (Blazingly Fast NSFW Blocker)
// @description Enhance your online well-being by blocking explicit content.
// @version 3.0
// @match *://*/*
// @grant none
// @run-at document-start
// @namespace https://greasyfork.org/users/370665
// ==/UserScript==
const keywords = [
'sex',
'porn',
'tits',
'xnxx',
'boobs',
'penis',
'pussy',
'hanime',
'hentai',
'rule34',
'vagina',
'blowjob',
'breasts',
'handjob',
'xvideos',
'hot girl'
];
// Get the title and URL
const titleAndUrl = [document.title, window.location.href].join(" ").toLowerCase();
// Redirect user if keywords are found
if (keywords.some(keyword => titleAndUrl.includes(keyword))) {
location.replace("https://www.google.com/");
}