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.3
// @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];
    if (LockerDiv !== undefined)
    {
        LockerDiv.setAttribute("data-lock-id", "");
        LockerDiv.style.display = "inline";
    }

    var CompulClick = document.getElementsByClassName("vell")[0];
    if (CompulClick !== undefined) CompulClick.click();

})();

QingJ © 2025

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