FastForward icon indicating copy to clipboard operation
FastForward copied to clipboard

Due to copyright reasons we are not bypassing linkvertise stored content (paste, download etc) :c

Open illegalsolutions opened this issue 3 years ago • 1 comments

Domain

https://linkvertise.com/

Link

https://linkvertise.com/156939/epicmod/1

Version

0.0.0

What browsers are you seeing the problem on?

Chrome

What OS are you seeing the problem on?

Windows

Anything else?

image Due to copyright reasons we are not bypassing linkvertise stored content (paste, download etc)

:c

illegalsolutions avatar Sep 19 '22 22:09 illegalsolutions

as you can see from the message, Due to copyright reasons we are not bypassing linkvertise stored content.

undeadjess avatar Sep 19 '22 22:09 undeadjess

Try this custom bypass:

domainBypass("linkvertise.com", () => {
    fetch('https://api.bypass.vip/', {
        method: 'POST',
        body: new URLSearchParams({
            url: window.location.href //URL to be bypassed
        })
    })
    .then(response => {
        response.json()
        .then(json => [response, json])
            .then(data => {
                if (data[1]['success'] === true) {
                    window.location.replace(data[1]['destination'])
                } else {
                    alert("Bypassing failed: " + data[1]['response'] + "\nHTTP Status: " + data[0].status + " " + data[0].statusText + "\nOK: " + data[0].ok)
                }
        })
    })
})

aidan-walden avatar Sep 30 '22 17:09 aidan-walden

We won't fix this, as the message says.

lostdusty avatar Oct 13 '22 19:10 lostdusty