Elimina el contador para ver enlaces en CompucaliTV!
当前为
// ==UserScript==
// @name Compucalitv Remove Links Counter
// @namespace http://tampermonkey.net/
// @version 1.2
// @description Elimina el contador para ver enlaces en CompucaliTV!
// @author DarioGabriel
// @match *compucalitv.com*
// @include *compucalitv.com*
// @include *compul.in*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var LockerDiv = document.getElementsByClassName("onp-locker-call")[0];
LockerDiv.setAttribute("data-lock-id", "");
LockerDiv.style.display = "inline";
var i;
var ElementIDs;
ElementIDs = document.getElementsByTagName("a");
for (i = 0; i < ElementIDs.length; i++) {
if (ElementIDs[i].className === "vell")
{
ElementIDs[i].click();
}
}
})();