Greasy Fork is available in English.

Encrypted Google (HTTPS/SSL)

Redirects Google to Encrypted Google

  1. // ==UserScript==
  2. // @name Encrypted Google (HTTPS/SSL)
  3. // @namespace Jay
  4. // @description Redirects Google to Encrypted Google
  5. // @version 1.0
  6. // @icon http://www.sainofy.com/images/SSL-security.png
  7. // @include https://www.google.*
  8. // @exclude https://encrypted.google.com/*
  9. // @exclude https://accounts.google.com/*
  10. // @exclude https://mail.google.com/*
  11. // @exclude http://www.google.com/*
  12. // @exclude http://www.google.com/imgres?imgurl=*
  13. // @grant None
  14. // ==/UserScript==
  15.  
  16. // US / UK Only (.com)
  17.  
  18. // If you use Google Search it will redirect you to Encrypted Google unless you're using Google SSL Search
  19. // Google SSL Search (Firefox) : https://addons.mozilla.org/en-US/firefox/addon/google-ssl-search
  20.  
  21. // 1.0
  22. // Fixed redirecting Google Mail to Encrypted Google.
  23. // Fixed redirecting Google Images to Encrypted Google.
  24.  
  25. window.location.href="https://encrypted.google.com/";