Internet Guardian

Enhance your online well-being by blocking explicit content.

目前為 2023-12-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Internet Guardian
// @description  Enhance your online well-being by blocking explicit content.
// @version      3.11
// @match        *://*/*
// @icon         https://icons.iconarchive.com/icons/graphicloads/folded/256/unlock-folded-icon.png
// @grant        none
// @run-at       document-start
// @namespace    https://gf.qytechs.cn/en/scripts/470927-internet-guardian
// ==/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/");
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址