Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

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

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