自动强制安全链接!
当前为
// ==UserScript==
// @name Simple HTTPS Anywhere
// @namespace http://tampermonkey.net/
// @version 0.1.0
// @description try to take over the world!
// @description:zh-CN 自动强制安全链接!
// @author Gear
// @match http://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(window.location.href.replaceAll('http://','https://')!=window.location.href)
window.location.href = window.location.href.replaceAll('http://','https://');
// Your code here...
})();