Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

当前为 2017-01-28 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Compucalitv Remove Links Counter
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.5
  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. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var CompulClick = document.getElementsByClassName("vell")[0];
  16. if (CompulClick !== undefined) CompulClick.click();
  17. document.getElementsByClassName("onp-sl")[0].remove();
  18. var LockerDiv = document.getElementsByClassName("onp-sl-content")[0];
  19. if (LockerDiv !== undefined)
  20. {
  21. LockerDiv.setAttribute("data-lock-id", "");
  22. LockerDiv.style.display = "inline";
  23. }
  24.  
  25. window.location=targetURL;
  26. })();