Block NSFW and other 18+ content.
当前为
// ==UserScript==
// @name Internet Guardian
// @description Block NSFW and other 18+ content.
// @version 5.1
// @match *://*/*
// @icon https://icons.iconarchive.com/icons/graphicloads/folded/256/unlock-folded-icon.png
// @grant none
// @run-at document-start
// @namespace https://greasyfork.org/en/scripts/470927-internet-guardian
// ==/UserScript==
const keywords = [
'sex',
'cock',
'dick',
'fuck',
'gore',
'nude',
'orgy',
'porn',
'tits',
'xnxx',
'boobs',
'naked',
'penis',
'pussy',
'hanime',
'hentai',
'rule34',
'vagina',
'blowjob',
'breasts',
'handjob',
'xvideos'
];
const url = window.location.href;
const lowercaseUrl = url.toLowerCase();
// Redirect
if (keywords.some(keyword => lowercaseUrl.includes(keyword))) {
location.replace("https://www.youtube.com/watch?v=AWPq4QgAPBM");
}
// Enable safe-search
if (url.startsWith('https://www.google.com/search?') && !url.endsWith("&safe=on")) {
window.location.href += "&safe=on";
}