Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

当前为 2022-08-29 提交的版本,查看 最新版本

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