Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

当前为 2022-02-14 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Compucalitv Remove Links Counter
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.8.1
  5. // @description Elimina el contador para ver enlaces en CompucaliTV!
  6. // @author DarioGabriel
  7. // @match *compucalitv.com*
  8. // @include *compucalitv.com*
  9. // @include *compul.in*
  10. // @include *ctvout.buzz*
  11. // @include *ctvurl.*
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. if ((document.URL.indexOf("ctvout") >= 0) || (document.URL.indexOf("ctvurl") >= 0))
  19. {
  20. location.href = global.fastLink+atob(getAfterSharp())
  21. }
  22. else
  23. {
  24. var CompulClick = document.getElementsByClassName("btn btn-lg btn-success")[0];
  25. if (CompulClick !== undefined) CompulClick.click();
  26.  
  27. var LockerDiv = document.getElementsByClassName("onp-sl-content")[0];
  28. if (LockerDiv !== undefined)
  29. {
  30. LockerDiv.setAttribute("data-lock-id", "");
  31. LockerDiv.style.display = "inline";
  32. }
  33.  
  34. CompulClick = document.getElementsByClassName("linkhidder")[0];
  35. if (CompulClick !== undefined) CompulClick.click();
  36. try
  37. {
  38. if (targetURL)
  39. {
  40. window.location.replace(targetURL);
  41. }
  42. }
  43. catch(e)
  44. {
  45. }
  46. try
  47. {
  48. if (link)
  49. {
  50. window.location.replace(link);
  51. }
  52. }
  53. catch(e)
  54. {
  55. }
  56. }
  57. })();