Nhập mã pin VPS SmartPro - vps.com.vn

15:49:24, 23/5/2021

当前为 2021-05-23 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Nhập mã pin VPS SmartPro - vps.com.vn
  3. // @namespace Violentmonkey Scripts
  4. // @match https://smartpro.vps.com.vn/v1/
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @description 15:49:24, 23/5/2021
  9. // ==/UserScript==
  10.  
  11. function setPin() {
  12. global.AccountPinCD = "Nhập mã pin tại đây"
  13. }
  14.  
  15. function setTextAlign() {
  16. document.getElementById("right_price").style.textAlign = "left"
  17. document.getElementById("sohopdong").style.textAlign = "left"
  18. }
  19.  
  20. // New Approach
  21. // Overwrite console.log
  22. console.stdlog = console.log.bind(console);
  23. console.log = function(){
  24. console.stdlog.apply(console, arguments);
  25. if(arguments[0] === "Reg Success!") {
  26. setPin();
  27. setTextAlign();
  28. }
  29. }
  30.  
  31. // // Legacy approach
  32. // setTimeout(function main() {
  33. // setPin();
  34. // setTextAlign();
  35. // }, 4000)

QingJ © 2025

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