Brazzers - TWEAKED

View many short scenes without limits and links to download FULL scenes from LimeTorrents.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

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

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

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

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

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Brazzers - TWEAKED
// @namespace    none
// @version      0.9
// @description  View many short scenes without limits and links to download FULL scenes from LimeTorrents.
// @author       Bob Crawley
// @copyright    2021, bobcrawley (https://openuserjs.org/users/bobcrawley)
// @license      MIT
// @match        https://www.brazzers.com/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function torrentify(){

        // Declaring variables to stop script from spazzing out.
        var i
        var sceneName

        // Add Torrentz link for scenes using jQuery

        // For all scenes on navigation pages
        var sceneCard = document.querySelectorAll("div.dtkdna-4.dtkdna-10");

        for (i=0; i<sceneCard.length; i++) {
            if (sceneCard[i].innerHTML.search("limetorrents.info")==-1)
            {
                sceneName = sceneCard[i].innerText;
                sceneCard[i].innerHTML += ('<span style="padding-left:5px;"><a target="_blank" href="https://www.limetorrents.info/search/all/'+sceneName+'"><img src="https://www.limetorrents.info/favicon.ico" width="16" height="16"></a></span>')
            }
        };

        // Not sure what this applies to.
        var sceneView = document.querySelectorAll("h2.sc-1b6bgon-1.kOFSRa");

        for (i=0; i<sceneView.length; i++) {
            if (sceneView[i].innerHTML.search("limetorrents.info")==-1)
            {
                sceneName = sceneView[i].innerText;
                sceneCard[i].innerHTML += ('<span style="padding-left:5px;"><a target="_blank" href="https://www.limetorrents.info/search/all/'+sceneName+'"><img src="https://www.limetorrents.info/favicon.ico" width="16" height="16"></a></span>')
            }
        };

        // For single page
        var singleScene = document.querySelector("h2.sc-1b6bgon-2.font-secondary")
        if(singleScene != null)
        {
            if (singleScene.innerHTML.search("limetorrents.info")==-1)
            {
                sceneName = singleScene.innerText;
                singleScene.innerHTML += ('<span style="padding-left:5px;"><a target="_blank" href="https://www.limetorrents.info/search/all/'+sceneName+'"><img src="https://www.limetorrents.info/favicon.ico" width="16" height="16"></a></span>')
            }
        }

        console.log("running torrentify")

    }

    function triggerButton() {
        var torrentTriggerButton = document.createElement("BUTTON");
        var torrentTriggerButtonText = document.createTextNode("Click me");
        torrentTriggerButton.appendChild(torrentTriggerButtonText);

        var bigButton = document.querySelector("div.udqyc6-0.ioxKuO")
        var smallButton = document.querySelector("div.udqyc6-0.jCNwqs")

        if (smallButton){
            smallButton.innerHTML = "<a id='torrentify' href='javascript:void(0);'> torrentify </a>"
        }

        if (bigButton){
            bigButton.innerHTML = "<a id='torrentify' href='javascript:void(0);'> torrentify </a>"
        }

        console.log("running triggerButton")
    }

    function cookiesFix() {
        function setCookies(cookieName, cookieValue, domainName, cookieExpires) {
            document.cookie = cookieName + "=" + cookieValue + ";path=/; domain=" + domainName + "; expires=" + cookieExpires;
        };

        var domainName = ".brazzers.com";

        // Unlimited Scene Views
        setCookies("cb-scene", "off", domainName, "");

        // Remove Social Media side
        setCookies("social-media", "off", domainName, "");

        // Bypass homepage I Agree
        setCookies("iAgree", "1", domainName, "");
        setCookies("ats", "eyJhIjo5NDk2LCJjIjo1NjU4NTQyNSwibiI6MTQsInMiOjg2LCJlIjo4NDI2LCJwIjozfQ==", domainName, "");

        // Remove bottom Join Now banner
        setCookies("wep1-29934-fl-rem", "1", domainName, "");

        // Remove below banner
        var banner = document.getElementsByClassName("sc-1mhpkp8-3 fJgjZN");
        if(banner[0] != null)
        {
        banner[0].innerHTML = ""
        };

        console.log("running cookiesFix")
    }

    document.addEventListener('click',() => {
        triggerButton();
        torrentify();
        cookiesFix();
    });

})();