Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

当前为 2024-01-16 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Compucalitv Remove Links Counter
// @namespace    http://tampermonkey.net/
// @version      1.9.0
// @description  Elimina el contador para ver enlaces en CompucaliTV!
// @author       DarioGabriel
// @match        https://*/*
// @match        *compucalitv.com*
// @include      *compucalitv.com*
// @include      *compucalitv.pro*
// @include      *compul.in*
// @include      *cwctv.me*
// @include      *ctvtg.me*
// @include      *ctvout.buzz*
// @include      *ctvurl.*
// @grant        none
// ==/UserScript==

var currentURL = window.location.href.toString();

if (currentURL.match(/.+:\/\/.+\/url\/#/) !== null) {
    var encodedURL = currentURL.replace(/.+:\/\/.+\/url\/#/, '');
    console.log(encodedURL);
    var decodedURL = atob(atob(atob(encodedURL))); //3x base64 decode
    decodedURL = decodedURL.replace(/.+url=/,'')
    window.open(decodeURIComponent(decodedURL),'_self','noopener,noreferrer,resizable')
}
else {
    (function() {
        'use strict';

        if ((document.URL.indexOf("ctvout") >= 0) || (document.URL.indexOf("ctvurl") >= 0) || (document.URL.indexOf("ctv") >= 0))
        {
            location.href = global.fastLink+atob(getAfterSharp())
        }
        else
        {
            var CompulClick = document.getElementsByClassName("btn btn-lg btn-success")[0];
            if (CompulClick !== undefined) CompulClick.click();

            var LockerDiv = document.getElementsByClassName("onp-sl-content")[0];
            if (LockerDiv !== undefined)
            {
                LockerDiv.setAttribute("data-lock-id", "");
                LockerDiv.style.display = "inline";
            }

            CompulClick = document.getElementsByClassName("linkhidder")[0];
            if (CompulClick !== undefined) CompulClick.click();
            try
            {
                if (targetURL)
                {
                    window.location.replace(targetURL);
                }
            }
            catch(e)
            {
            }
            try
            {
                if (link)
                {
                    window.location.replace(link);
                }
            }
            catch(e)
            {
            }
        }
    })();
}