click thx

感謝解鎖

2024-08-30 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        click thx
// @namespace   https://oursogo.com
// @match       https://oursogo.com/thread*
// @match       https://oursogo.com/forum.php?mod=viewthread&tid=*
// @grant       none
// @version     2024-08-31 07:32
// @icon        https://oursogo.com/static/image/common/bbs.ico
// @author      -
// @description 感謝解鎖
// @license     MIT
// ==/UserScript==

setTimeout(function(){
  let thx = document.querySelector('div.locked a[onclick*="thanks"]');
  if (!!thx) {
    thx.click();
    setInterval(function(){

      let sendthx = document.querySelector('div.pns button');
      if (!!sendthx){
        sendthx.click();

      }
    }, 500);
  }

}, 2500);