Force HTTPS

Force HTTP to HTTPS

// ==UserScript==
// @name              Force HTTPS
// @namespace     ghostrider47
// @version            0.2
// @description     Force HTTP to HTTPS
// @author            ghostrider47
// @match             http://*
// @include           http://*
// @grant              none
// ==/UserScript==
// @run-at            document-start
// @run-at            document-end
// @run-at            document-idle

document.location = document.URL.replace('http://','https://');