Greasy Fork

Greasy Fork is available in English.

New script

2020/12/30 下午4:51:35

当前为 2020-12-30 提交的版本,查看 最新版本

// ==UserScript==
// @name        New script 
// @namespace   Violentmonkey Scripts
// @include     https://www.cnblogs.com/*
// @grant       none
// @version     3.0
// @author      小白
// @description 2020/12/30 下午4:51:35
// ==/UserScript==

(function(){
    window.helloworld = function() {
        alert('Hello world!');
    }

   window.setTimeout("helloworld()", 60);
});