Sorry, guys! During system maintenance, some functions like comment are unavailable.

Report

Sushi January 22, 2026 11:18 pm

Someone wrote this comment and I'm forwarding it so more people can see it :

Hi guys
As you know the other site is already down and now this sites in danger as well. Someone named (@useru1fxwvksux) in tiktok has posted a video with mangago name visible (including name of other sites as well). I think they are also responsible for the other site rn. Pls dont interact with their platform and lets mass report their account.

Help spread this and let's protect this precious site

https://www.tiktok.com/@useru1fxwvksux?_r=1&_t=ZS-93HuNLJB7CB

Report this person on tiktok

Responses
    Profanity January 23, 2026 1:05 pm

    dat one bold mf

    GregsPhatBussyLips January 23, 2026 2:40 pm

    ive saved over 3k mangas if this site disappears im just gonna become a normal employed human no way im starting over... wish i could like download my list

    Daisy January 23, 2026 3:54 pm

    Omg nooooo! Not again! We had a problem with mangago way back then and it was AWFUL, months without reading and I also lost my lists...

    Felicious January 23, 2026 11:18 pm
    ive saved over 3k mangas if this site disappears im just gonna become a normal employed human no way im starting over... wish i could like download my list GregsPhatBussyLips

    Keep a backup of the list, lmao better safe than sorry.

    kuro January 23, 2026 11:31 pm

    im already devastaded by that site going down, if this ones goes too i would die. this si my backup library... honestly whats the point of ruin so many peoples happy place....

    GregsPhatBussyLips January 24, 2026 9:44 am
    Keep a backup of the list, lmao better safe than sorry. Felicious

    but would would i even... it would take hours everyday which i dont have to manually save each on another site...

    Felicious January 24, 2026 3:01 pm
    but would would i even... it would take hours everyday which i dont have to manually save each on another site... GregsPhatBussyLips

    Umm, I have a quick way to do this. You can run a script directly in the page source (press F12, open Console), and it will retrieve all the names into a CSV file. If you want, I can share the details it honestly took me about 3 minutes.

    GregsPhatBussyLips January 24, 2026 11:29 pm
    Umm, I have a quick way to do this. You can run a script directly in the page source (press F12, open Console), and it will retrieve all the names into a CSV file. If you want, I can share the details it honest... Felicious

    wait omg please give details

    Felicious January 25, 2026 4:16 pm
    wait omg please give details GregsPhatBussyLips

    Log in to mangago.me

    Open the list you want to back up (Want to Read / Reading / Read)

    Make sure you’re on page 1 of that list

    Press F12 on your keyboard

    A panel opens

    Click the Console tab

    Copy the script below

    Paste it into the Console

    Press Enter

    (async () => {
    const totalPages = 43;
    const sleep = ms => new Promise(r => setTimeout(r, ms));
    const manga = new Map();

    for (let p = 1; p <= totalPages; p++) {
    const url = window.location.href.replace(/(?page=d+|$)/, `?page=${p}`);

    await fetch(url)
    .then(r => r.text())
    .then(html => {
    const doc = new DOMParser().parseFromString(html, "text/html");
    doc.querySelectorAll('a[href*="/read-manga/"]').forEach(a => {
    const title = a.textContent.trim();
    if (title) manga.set(a.href, title);
    });
    });

    await sleep(1000);
    }

    const csv = "Title,URLn" + [...manga.entries()]
    .map(([url, title]) => `"${title.replace(/"/g,'""')}",${url}`)
    .join("n");

    const blob = new Blob([csv], { type: "text/csv;charset=utf-8;" });
    const a = document.createElement("a");
    a.href = URL.createObjectURL(blob);
    a.download = "mangago_backup.csv";
    a.click();
    })();


    MAKE SURE replace the number if needed — here it’s 43 pages if you have for example 10 pages in your read list change const totalPages = 10; in code. Do this for want to read, reading, want to read list one by one

    GregsPhatBussyLips January 26, 2026 12:24 pm
    Log in to mangago.meOpen the list you want to back up (Want to Read / Reading / Read)Make sure you’re on page 1 of that listPress F12 on your keyboardA panel opensClick the Console tabCopy the script belowPas... Felicious

    noooo omg i didnt get to it and now theyre gone.... or well i tried doing it but couldnt figure out what you meant by copying the script below since there was really a script and nothing to paste....

    GregsPhatBussyLips January 26, 2026 12:24 pm
    ive saved over 3k mangas if this site disappears im just gonna become a normal employed human no way im starting over... wish i could like download my list GregsPhatBussyLips

    i foreshadowed my downfall

    Felicious January 26, 2026 6:05 pm
    noooo omg i didnt get to it and now theyre gone.... or well i tried doing it but couldnt figure out what you meant by copying the script below since there was really a script and nothing to paste.... GregsPhatBussyLips

    I was so scared Please don’t let this site go down (/TДT)/

    I can send a video tutorial if that helps.
    Basically, the “script” is just a small piece of text you copy and paste.

    You open the page, press F12 on your keyboard, then click on Console.
    After that, you paste the text I shared and press Enter. That’s it.

    If you’re unsure, you can also google something like “how to run a script on a webpage” and follow any simple guide.

    Sorry if I sounded too technical before I didn’t mean to

    Profanity January 27, 2026 4:36 am
    I was so scared Please don’t let this site go down (/TДT)/I can send a video tutorial if that helps.Basically, the “script” is just a small piece of text you copy and paste.You open the page, press F1... Felicious

    this is mainly for pcs, how about cps. Does this work if u convert the site in cp into a desktop?