Greasy Fork

Greasy Fork is available in English.

音乐磁场自动回复隐藏帖

自动回复音乐磁场论坛上的隐藏帖

目前为 2024-09-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         音乐磁场自动回复隐藏帖
// @namespace    http://tampermonkey.net/
// @version      2024-09-07
// @description  自动回复音乐磁场论坛上的隐藏帖
// @author       zhenhappy<[email protected]>
// @match        https://www.hifini.com/thread-*.htm
// @icon         https://www.hifini.com/favicon.ico
// @require      https://unpkg.com/jquery/dist/jquery.slim.min.js
// @run-at       document-body
// @license      MIT
// ==/UserScript==

(function() {
  $('#message').val('谢谢分享')
  setTimeout(() => {
    $('#submit').trigger('click')
  }, 500)
})();