Google Force SafeSearch

Force SafeSearch for Google

  1. // ==UserScript==
  2. // @name Google Force SafeSearch
  3. // @description Force SafeSearch for Google
  4. // @namespace TakumiBC
  5. // @include http*://*.google.*/search*
  6. // @include http://*.google.*/imgres*
  7. // @version 1.0.1
  8. // @grant none
  9. // @license GNU GPLv2
  10. // ==/UserScript==
  11. var url = window.location.href;
  12. var safe = "&safe=on";
  13. if(url.indexOf(safe) == -1){
  14. url += safe;
  15. window.location = url;
  16. }

QingJ © 2025

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