Advertisement
Lorenzo501
Jun 11th, 2025
6
0
Never
This is comment for paste Google Disable SafeSearch automatically
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. It has been updated:
  2.  
  3. // ==UserScript==
  4. // @name Google Disable SafeSearch automatically
  5. // @description Disable Google SafeSearch automatically
  6. // @namespace Mikhoul
  7. // @include http*://*.google.*/search*
  8. // @include http://*.google.*/imgres*
  9. // @exclude http*://contacts.google.com
  10. // @version 1.02
  11. // @grant none
  12. // @downloadURL https://update.greasyfork.org/scripts/25286/Google%20Disable%20SafeSearch%20automatically.user.js
  13. // @updateURL https://update.greasyfork.org/scripts/25286/Google%20Disable%20SafeSearch%20automatically.meta.js
  14. // ==/UserScript==
  15.  
  16. var url = window.location.href;
  17. var safe = "&safe=off";
  18. if(url.indexOf(safe) == -1){
  19. url += safe;
  20. window.location = url;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement