Statement scripts

Automate click-and-click statement scripts

目前为 2024-02-01 提交的版本,查看 最新版本

// ==UserScript==
// @name         Statement scripts
// @namespace    http://tampermonkey.net/
// @version      2024-02-01
// @description  Automate click-and-click statement scripts
// @author       women
// @match        https://greasyfork.org/zh-CN/users/1255849-womenhao
// @match        *://*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @license      AGPL-3.0
// @grant        none
// ==/UserScript==

(
    function() {
        'use strict';

        console.log('点击')
    }
)

();