Proxy Redirect

Redirect to privacy respecting proxy frontends

< Σχολιασμός για τον κώδικα Proxy Redirect

Αναφορά: Εντάξει - ο κώδικας λειτουργεί αλλά έχει σφάλματα

§
Δημοσιεύτηκε: 25/05/2025

Does YouTube just.. does not work? Tried with different videos and YouTube pages.

Url: https://m.youtube.com/watch?v=NYNBAxDfgrY&pp=0gcJCdgAo7VqN5tD

SchimonΔημιουργός
§
Δημοσιεύτηκε: 26/05/2025

Yes. You are correct.

It appears that they managed to block that script.

However, if you hover a hyperlink to that site, the script should change the link of it to another instance.

§
Δημοσιεύτηκε: 26/05/2025

Yeah, hovering over it seems to work fine. But will there be a fix? Can't hover on links from other apps, after all.

SchimonΔημιουργός
§
Δημοσιεύτηκε: 04/06/2025
Επεξεργάστηκε: 04/06/2025

I apologise for lingering.

But will there be a fix?

Perhaps we should set an interbal which periodically checks the current hostname.

What do you think?

§
Δημοσιεύτηκε: 04/06/2025

"Periodically" means there will be delay, no? It kinds of defeats the purpose if YouTube could already track me during that short time gap.

Is there a reason it can't be done immediately upon visit like the way it redirects Reddit and other platforms?

In any case, I don't have any coding experience, so I support you with any changes that you see fit. ⭐

But I did managed to solve my "Link in other apps" problem by using URLCheck app 'pattern checker' module, kind of like UntrackMe. Using one instance is enough for me most of the time.

SchimonΔημιουργός
§
Δημοσιεύτηκε: 02/07/2025
Επεξεργάστηκε: 02/07/2025

I might want to use this as a mean to mitigate this issue.

let startTime = new Date().getTime();
while (true) {
    let currentTime = new Date().getTime();
    if (currentTime - startTime > 15000) {
        // Perform your task here
        console.log("Loop running");
        startTime += 15000;
    } else {
        setTimeout(function() {}, 15000);
    }
}

I intended to spend time on it during Friday, yet, I was distracted by this report.

https://greasyfork.runtimutd.eu.org/en/reports/84856

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.