Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

目前為 2016-04-30 提交的版本,檢視 最新版本

// ==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();
        }
    }

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址