Greasy Fork is available in English.

Google - Images & Videos No Blur

Google's Images & Videos Auto Turn Off SafeSearch, No Blurred. 谷歌 (图片和视频) 自动关闭安全搜索,不再模糊化。

// ==UserScript==
// @name         Google - Images & Videos No Blur
// @namespace    http://tampermonkey.net/
// @version      1.6
// @description  Google's Images & Videos Auto Turn Off SafeSearch, No Blurred. 谷歌 (图片和视频) 自动关闭安全搜索,不再模糊化。
// @author       Martin______X
// @include      /https://www.google.com(.*)/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant        none
// @license      MIT
// ==/UserScript==

let $url = "";
const simpleClick = (async (target)=>{
    target.click();
});
const googleInterval = setInterval(() => {
    let url = document.URL;
    if(url != $url){
        //Counter
        let i = 0;
        // Images Button List
        let list_1 = document.getElementsByClassName("gZTQqb nNzjpf-cS4Vcb-PvZLI-Ueh9jd-H9tDt");
        // Videos Button List
        let list_2 = document.getElementsByClassName("ZamH3c btku5b k0Jjg A29zgf LwdV0e zqrO0 sLl7de rlt7Ub PrjL8c");

        //Attributes In Tags
        let role = "";
        let jsname = "";
        let data_key = "";
        let selected = "";

        //Click Images "Off" Button
        for(i=0;i<list_1.length;i++){
            role = list_1[i].getAttribute("role");
            jsname = list_1[i].getAttribute("jsname");
            data_key = list_1[i].getAttribute("data-key");
            if(role == "button" && jsname == "IOT06b" && data_key == "off"){
                selected = list_1[i].getAttribute("selected");
                if(selected != "true"){
                    simpleClick(list_1[i]);
                }
                $url = url;
            }
        }

        //Click Videos "Off" Button
        for(i=0;i<list_2.length;i++){
            role = list_2[i].getAttribute("role");
            jsname = list_2[i].getAttribute("jsname");
            data_key = list_2[i].getAttribute("data-key");
            if(role == "button" && jsname == "IOT06b" && data_key == "off"){
                selected = list_2[i].getAttribute("selected");
                if(selected != "true"){
                    simpleClick(list_2[i]);
                }
                $url = url;
            }
        }
    }
}, 1);