Advertisement
mheezand

OtoKlik

Nov 19th, 2018
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Auto Klik
  3. // @namespace    http://www.emm-emm.com/
  4. // @version      1.2.8
  5. // @description  Auto Klik Donlotan wakakaka
  6. // @author       eZee
  7. // @icon         https://graph.facebook.com/1750572307/picture
  8. // @updateURL    https://pastebin.com/raw/CT0byw4y
  9.  
  10. // @match        *://welcome.indihome.co.id/landing-page
  11. // @match        *://*.hexafile.net/*
  12.  
  13. // @match        *://*.tetew.info/*
  14. // @match        *://*.greget.space/*
  15. // @match        *://*.siherp.com/*
  16. // @match        *://*.ahexa.com/*
  17.  
  18. // @match        *://davinsurance.com/*
  19.  
  20. // @match        *://*.safelinkreviewx.com/*/cost/*
  21.  
  22. // @match        *://*.zippyshare.com/v/*
  23. // @match        *://drive.google.com/file/d/*
  24. // @match        *://*.zxcfiles.com/download
  25. // @match        *://*.zxcfiles.xyz/*
  26. // @match        *://*.mediafire.com/file/*
  27. // @grant        GM_xmlhttpRequest
  28. // @run-at       document-start
  29. // @require      http://code.jquery.com/jquery-latest.js
  30. // ==/UserScript==
  31.  
  32. var fulldomen,domen, link, anu = 0, tipe, mod, jdl;
  33. var str, stt, a, b ,c;
  34. $(document).ready(function() {
  35.     //domen = document.domain;
  36.     domen = document.documentURI;
  37.     if(domen.match(/welcome.indihome.co.id/g)){
  38.         link = $("div.background-box").find("a").attr("href");
  39.     } else if(domen.match(/hexafile.net/g)){
  40.         str = document.getElementsByTagName('script');
  41.         stt = str[6].text.split('window.location="')[1].split('";');
  42.         link = stt[0];
  43.     } else if(domen.match(/tetew.info|greget.space|siherp.com|ahexa.com/g)){
  44.         link = $("div.download-link").find("a").attr("href");
  45.     } else if(domen = domen.match(/zippyshare.com/g )){
  46.         link = $("a#dlbutton").attr("href");
  47.     } else if(document.documentURI.match(/drive.google.com\/file\/d\//g)){
  48.             a = document.documentURI.replace("/file/d/", "/uc?id=");
  49.             b = a.split("/view");
  50.             c = b[0].split("/edit");
  51.             link = c[0] + "&export=download";
  52.     } else if(document.documentURI.match(/davinsurance.com\//g)){
  53.         if(document.documentURI.match(/\?id=/g)){
  54.             tipe='klik';
  55.             link = $("input.sorasubmit");
  56.         } else {
  57.              str = document.getElementsByTagName('script');
  58.              stt = str[10].text.split("changeLink(){var a='")[1].split("';");
  59.              link = stt[0];
  60.         }
  61.     } else if(document.documentURI.match(/safelinkreviewx.com/g )){
  62.         var a = $("div.button").attr("onclick").replace("window.open('", "").replace("&pop=2', '_blank');", "");
  63.         link = a.replace("decrypt2.safe", "decrypt.safe");
  64.     } else if(document.documentURI.match(/zxcfiles.com/g )){
  65.         var atext = $("span#download").text();
  66.         if( atext == '' ){
  67.             tipe = 'klik';
  68.             link = $("button.downloadbtn");
  69.         } else link = $("span#download").find("a").attr("href");
  70.     } else if(document.documentURI.match(/zxcfiles.xyz/g )){
  71.             link = $("div.btn-group").find("a").attr("href");
  72.     } else if(document.documentURI.match(/mediafire.com\/file\//g )){
  73.         link = $("div.download_link").find("a").attr("href");
  74.     }
  75.  
  76.     setTimeout(function(){
  77.         if(tipe == 'klik'){
  78.             klik(link);
  79.         } else {
  80.             mangkat(link);
  81.         }
  82.     }, (anu * 1000));
  83.  
  84. });
  85.  
  86. function klik(url){
  87.     if(url.click()){
  88.         document.title = 'Mencet Tombol '+ url.text();
  89.     } else {
  90.         document.title = jdl;
  91.     }
  92. }
  93. function mangkat(url){
  94.     document.title = 'Cuss '+url;
  95.     window.location.replace(url);
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement