Compucalitv Remove Links Counter

Elimina el contador para ver enlaces en CompucaliTV!

اعتبارا من 25-07-2023. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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

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