FastForwardTeam / FastForward

Don't waste your time with compliance. FastForward automatically skips annoying link shorteners.
https://fastforward.team/
The Unlicense
3.63k stars 287 forks source link

Bypass needed for https://ify.ac #1155

Open HazeWorksOnFiveMServer opened 1 year ago

HazeWorksOnFiveMServer commented 1 year ago

Link

https://ify.ac/cXr

Version

Manifest-v3

What browser(s) are you using?

Chrome browsers (includes brave, edge, opera, etc)

What platform are you using?

Computer (Windows, Linux, MacOS)

(Optional) Anything else?

image

driedpampas commented 1 year ago

try again and use the link in the screenshot as an example

driedpampas commented 1 year ago

also this looks like one of those websites so i don't think it's anything to do with bypassing

HazeWorksOnFiveMServer commented 1 year ago

Updated the Link

driedpampas commented 1 year ago

oh i think it's somewhat simple

HazeWorksOnFiveMServer commented 1 year ago

sounds good

driedpampas commented 1 year ago

https://github.com/driedpampas/FastForward-Firefox/actions/runs/6431692447

driedpampas commented 1 year ago

choose the package respective of your browser and load it (heads up: if you're on firefox stable or beta, you'll need to change the contact email in the manifest.json file and upload it to addons as self distributed to install it)

driedpampas commented 1 year ago

also ill finish this bypass and pr it after all the mv2 bypasses are ported to mv3 so you'll have to reinstall the ext every update (so ill keep the linkify branch on my repo and update it whenever origin gets an update)

github-actions[bot] commented 1 year ago

This issue is stale because it has been open for 30 days with no activity. To undo this, make some activity on this issue or create a new one.

rofdsfdsff commented 6 months ago

ify.ac bypass It may not work as it was created in chatgpt

domainBypass("ify.ac", () => {
    ensureDomLoaded(() => {
        // Код, который нужно выполнить после загрузки DOM
    });

    // Функция для проверки ссылок на странице и перехода на страницу без рекламы
    const bypassAdLinks = () => {
        const adLink = document.querySelector("a[href^='https://ify.ac/get/']");
        if (adLink) {
            safelyNavigate(adLink.href);
        } else {
            console.log("Ссылка без рекламы не найдена.");
        }
    };

    // Проверка ссылок на странице сразу при загрузке
    bypassAdLinks();

    // Проверка ссылок при каждом изменении URL (например, при переходе на новую страницу)
    window.addEventListener("hashchange", bypassAdLinks);
    window.addEventListener("popstate", bypassAdLinks);
});