PT Signed

PT 去签到

  1. // ==UserScript==
  2. // @name PT Signed
  3. // @namespace http://rachpt.cn/
  4. // @version 0.5
  5. // @description PT 去签到
  6. // @author rachpt
  7. // @license MIT
  8. // @match https://totheglory.im/*
  9. // @match https://hdhome.org/*
  10. // @match https://www.hdarea.co/*
  11. // @match https://hdchina.org/*
  12. // @icon https://totheglory.im/favicon.ico
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. if (location.host === 'totheglory.im') document.querySelector('#signed')?.click()
  20. else if (location.host === 'hdhome.org' ) {
  21. const btn = document.querySelector('.faqlink')
  22. if (btn) {
  23. btn.click()
  24. history.back()
  25. }
  26. }
  27. else if (location.host === 'www.hdarea.co') document.querySelector('#sign_in a')?.click()
  28. else if (location.host === 'hdchina.org') document.querySelector('.label-default[onclick]')?.click()
  29. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址