Google Disable SafeSearch automatically

Disable Google SafeSearch automatically

// ==UserScript==
// @name        Google Disable SafeSearch automatically
// @description Disable Google SafeSearch automatically
// @namespace   Mikhoul
// @include        http*://*.google.*/search*
// @include        http://*.google.*/imgres*

// @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或关注我们的公众号极客氢云获取最新地址