Disable Google SafeSearch automatically

it will disable Google SafeSearch automatically

目前为 2023-11-26 提交的版本。查看 最新版本

// ==UserScript==
// @name        Disable Google SafeSearch automatically
// @namespace   Disable Google SafeSearch automatically
// @author      Rishabh
// @include        https://www.google.*/search*
// @include        https://www.google.*/imgres*
// @description it will disable Google SafeSearch automatically
// @version     1.01
// @grant       none
// ==/UserScript==
var url = window.location.href;
var safe = "&safe=off";
if(url.indexOf(safe) == -1){
  url += safe;
  window.location = url;
}

QingJ © 2025

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