HTTPS-to-HTTP by Mandy

Redirect HTTPS to HTTP

  1. // ==UserScript==
  2. // @name HTTPS-to-HTTP by Mandy
  3. // @namespace http://userscripts.org/users/522904
  4. // @description Redirect HTTPS to HTTP
  5. // @include http://*
  6. // @include https://*
  7. // @grant none
  8. // @run-at document-start
  9.  
  10. // @version 1.0.0
  11.  
  12. // ==/UserScript==
  13.  
  14. (function(){
  15. if(document.location.href.indexOf("https://")==0)
  16. document.location.href=document.location.href.replace('https://','http://');
  17. })();