更简洁的https转换器

直接修改协议为HTTPS(更高效且避免替换错误)

目前為 2025-03-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         更简洁的https转换器
// @namespace    https://viayoo.com/
// @version      0.1
// @description  直接修改协议为HTTPS(更高效且避免替换错误)
// @author       YongZhe
// @run-at       document-end
// @match        https://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    // 直接修改协议为HTTPS(更高效且避免替换错误)
    if (window.location.protocol === 'http:') {
        window.location.protocol = 'https:';
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址