Statement scripts

Automate click-and-click statement scripts

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

  1. // ==UserScript==
  2. // @name Statement scripts
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-02-01
  5. // @description Automate click-and-click statement scripts
  6. // @author women
  7. // @match https://greasyfork.org/zh-CN/users/1255849-womenhao
  8. // @match *://*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
  10. // @license AGPL-3.0
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (
  15. function() {
  16. 'use strict';
  17.  
  18. console.log('点击')
  19. }
  20. )
  21.  
  22. ();