click thx

感謝解鎖

Fra 30.08.2024. Se den seneste versjonen.

// ==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);