返回首頁 

FORCE HTTPS

Redirects from HTTP to HTTPS


Install this script?
// ==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';// @noframeswindow.location.protocol = 'https:';})();