FORCE HTTPS

Redirects from HTTP to HTTPS

// ==UserScript==
// @name         FORCE HTTPS
// @namespace    http://tampermonkey.net/
// @version      1.0
// @author       NextDev65
// @description  Redirects from HTTP to HTTPS
// @match        http://*/*
// @exclude      http://localhost*/*
// @exclude      http://127.0.0.1/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // @noframes
    window.location.protocol = 'https:';
})();