weihl_test

open one's eyes to see the world.

От 14.10.2024. Виж последната версия.

// ==UserScript==
// @name         weihl_test
// @namespace    http://tampermonkey.net/
// @version      10-14
// @description  open one's eyes to see the world.
// @author       weihule
// @match        https://pmos.sd.sgcc.com.cn:18080/trade/main/index.do*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=google.com
// @grant        none
// @license      AGPL-3.0
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
        alert('Hello World');
    });
})();