Advertisement
Guest User

Untitled

a guest
Dec 18th, 2021
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getDomain() {
  2.     const hostnameArray = location.hostname.split('.')
  3.     return hostnameArray.length === 2 ? location.hostname : hostnameArray.slice(hostnameArray.length - 2).join('.')
  4. }
  5. const sites = {
  6.     'dutchycorp.space': function() {
  7.         if (window.showElem) {
  8.             window.showElem('cl1')
  9.             window.showElem('cl2')
  10.             setTimeout(function() {
  11.                 document.getElementById('invisibleCaptchaShortlink')?.click()
  12.             }, 1000)
  13.         } else {
  14.             waitForElement('.skip-ad > a').then(element => element.click())
  15.         }
  16.       },
  17.       'ccurl.net': function() {}
  18. }
  19. sites[getDomain()]?.()
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement