Can the MDlist be cleared?

Joined
Sep 27, 2018
Messages
121
Why I need it? I used the KM importer and messed up. (How did I even manage to use KM importer when KM website is gone? I have a cache copy of my bookmarks.)

How I mess up? A LOT of non-100% matches had wrong IDs.

Why didn't you check? I checked a couple and they were the right ID so I assumed the rest were good to go and only had to add the 0% matches manually. But here we are. Turns out I messed up pretty badly.

EDIT: Ty for the input. I have opted to manually add the missing ones and remov--- oh who am I kidding. Got no time for that. I'm doing one of the lazy option: just add the missing ones and hope that the random ones that got added aren't getting updates :^).
 
Dex-chan lover
Joined
Mar 17, 2019
Messages
9,798
Lmao OP knows he fucked up.

@jascaicps1
Don't worry OP, just either manually unfollow all your follows, or ping an admin to clear it for you (If I were you though, I'd just manually unfollow. Asking the mods for help with something like this seems extra).
 
Most powerful member of the GFG
Staff
Super Moderator
Joined
Feb 16, 2020
Messages
8,236
Or, you know, dump this account and make a new one.
 
Dex-chan lover
Joined
Sep 16, 2018
Messages
2,809
What's a KM importer?
Anyway I agree with bigtiddyoneesan on this, just do it manually.
Think of it like your own little adventure, who knows maybe you find something interesting while unfollowing random mangas on your MD list.
 
Dex-chan lover
Joined
Mar 17, 2019
Messages
9,798
OP when he decides that the maximum ~30 minute time of deleting his follows isn't worth it and opts to delete his account instead:
Z5GMAwnm.jpg
 
Dex-chan lover
Joined
Jan 17, 2018
Messages
3,198
> manually
ohNMNd5.jpg




Open browser devtools while on MangaDex (F12).
Select the console tab.
Copypaste this code, press Enter.

Obviously use this only if you absolutely sure want to unfollow everything.
 
Joined
Jul 29, 2020
Messages
5
My understanding is that there may be an administrator who can do clear your MDList based in a few threads I read. I started making a JS Script for moving reading mangas to plan to read in my MDList but I don't plan to finish it this is what I have, use at your own risk:
Code:
function get_mangas(){
	return document.getElementsByClassName("manga_title"); // all elements with this class seem to be anchors  
}
// moves a manga from given position (starting from 0)  on page from reading to plan to read
function move_tolist(position){
	var mangas = get_mangas();
	var tem = mangas[position].parentElement;
	do{
		tem = tem.parentElement;
	}while(tem.classList[0] != "manga-entry");
	
	// sloppy but works
	tem.childNodes[1].childNodes[3].childNodes[1].childNodes[1].childNodes[1].childNodes[5].childNodes[1].childNodes[1].childNodes[4].click(); // This could break at any time
	console.log(tem.dataset.id); 
}

//Edit, Added Loop
var x = 0;
for(x = 0; x < 10; x++){
move_tolist(x);
}

To clear the list I would put it in a while loop and keep it in the multi-line editor in Firefox, but there could be a problem when the page refreshes; I tried removing 2 mangas (used multiline editor to call move_tolist twice to remove the mangas in positions 0 and 1 before page refreshed with no problems, not sure how many can be moved before the page refreshes nor if the script will break as this happens.
Shortcuts: Control+Shift+K to open the Console and Control+B to open multi-line editor; should move insertion to console but if it opens bookmarks, click in the console then use Control+B.
 

Users who are viewing this thread

Top