Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

当前为 2016-04-18 提交的版本,查看 最新版本

// ==UserScript==
// @name         Compucalitv Remove Links Counter
// @namespace    http://tampermonkey.net/
// @version      1.1
// @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';

    // Your code here...
var x;
    var i;
    var ElementIDs = document.getElementsByTagName("div");
    for (i = 0; i < ElementIDs.length; i++) {
        if (ElementIDs[i].className.indexOf("onp-sl onp-sl-webkit") != -1)
        {
            ElementIDs[i].style.display = "none";
            
        }
        if (ElementIDs[i].className === "onp-sl-content")
        {
            ElementIDs[i].style.display = "inline";
        }
    }
    
    
    ElementIDs = document.getElementsByTagName("a");
    for (i = 0; i < ElementIDs.length; i++) {
        if (ElementIDs[i].className === "vell")
        {
            ElementIDs[i].click();
        }
    }

})();

QingJ © 2025

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