Greasy Fork 还支持 简体中文。

Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

目前為 2023-07-25 提交的版本,檢視 最新版本

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