Google Disable SafeSearch automatically

Disable Google SafeSearch automatically

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