nonono

no.

目前為 2023-12-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         nonono
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  no.
// @author       You
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function redirectOnRefresh() {
    
        var redirectURL = "https://";
        if (performance.navigation.type === 1) {
            window.location.href = redirectURL;
        }
    
}
    redirectOnRefresh();
})();