AI Ads are back again. Can we please stop with the slop?

Group Leader
Joined
Jun 12, 2020
Messages
16,342
Correct, the advertising team were paid for a 6 hour ad spot.
No mentions of them not doing it again? Cause if not, they are SO gonna do it again when the piggy bank gets empty.

Which seems to be around end of month. Keep an eye out for end of June to see what happens.
 
Secret Ayu Route Unlocked
Contributor
Joined
Nov 18, 2018
Messages
22,730
Fear not, for they seem to have restored the ad so they can show them haters wrong make a timely announcement about the change in policy :haa:
Why stop there? They should go all in and put both versions on the front page. :haa:
q35jJDv.png

H7iIp55.png
 
Dex-chan lover
Joined
Aug 17, 2019
Messages
245
Clearly not concerned about the actual viewers. Might be time to move to a different website in the near future somehow. That, or let this one die before it's ruined.
 
Secret Ayu Route Unlocked
Contributor
Joined
Nov 18, 2018
Messages
22,730
Just refresh your page a couple times and it'll switch between the two. So maybe it is the exact same ad.
Wait, it does. I swear earlier it was only the AI girl one.. Did they update it or did I just not notice?
 
Dex-chan lover
Joined
Apr 26, 2024
Messages
220
regardless. i don't even really mind the porn ad but the only ai slop i consume is between my robot girlfriends legs. amen ❤️ hope it gets removed again for realsies
 
Dex-chan lover
Joined
Dec 28, 2018
Messages
529
AI slop adult website, truly the best possible ad.
But i think they tried to handwave the last time with being a one day experiment
Oh look they lied, what a shock. Who could have imagined that from people willing to associate with slop?

Guess when the coding on the website goes to shit we'll all know why.
 
Supporter
Joined
May 24, 2020
Messages
118
is there a ublock filter for the >you reached your daily chapter limit< overlay for not logged in users too ?
I have been feeling conflicted about bypassing the sign-in requirement. However, while the pretense remains that the limit exists to prevent bots and scrapers I guess no one should see anything wrong with a subset of human users using alternative circumvention to get around that limit.
If we consider this post, it seems like it's actually a benefit to MangaDex if you bypass the sign-in requirement.

So with that said, anyone who isn't a bot or a scraper and has uBlock Origin, could try this:
Code:
mangadex.org##[data-v-184db84a][data-v-c6e0a7e2]
It works for me, but I don't know how universal those two keys are.

People who aren't bots or scrapers that have an extension to run javascript automatically could set it up to run this script whenever a chapter loads.
JavaScript:
localStorage.removeItem("md-limit-data");

Humans, not bots or scrapers, that use a browser with browser tools, can manually edit the "md-limit-data" entry in their local storage. The website doesn't check if the chapter count is less than 0, so you can set it to -1000 to read 1010 chapters in a day. It does still reset to 0 every day, so it's not completely automatic.
 
Dex-chan lover
Joined
Mar 28, 2019
Messages
300
I have been feeling conflicted about bypassing the sign-in requirement. However, while the pretense remains that the limit exists to prevent bots and scrapers I guess no one should see anything wrong with a subset of human users using alternative circumvention to get around that limit.
If we consider this post, it seems like it's actually a benefit to MangaDex if you bypass the sign-in requirement.

So with that said, anyone who isn't a bot or a scraper and has uBlock Origin, could try this:
Code:
mangadex.org##[data-v-184db84a][data-v-c6e0a7e2]
It works for me, but I don't know how universal those two keys are.

People who aren't bots or scrapers that have an extension to run javascript automatically could set it up to run this script whenever a chapter loads.
JavaScript:
localStorage.removeItem("md-limit-data");

Humans, not bots or scrapers, that use a browser with browser tools, can manually edit the "md-limit-data" entry in their local storage. The website doesn't check if the chapter count is less than 0, so you can set it to -1000 to read 1010 chapters in a day. It does still reset to 0 every day, so it's not completely automatic.
cool, thanks for the tip.

i use firefox, where/ how do i edit the "md-limit-data" entry? how do i find it in local storage ?
 
Supporter
Joined
May 24, 2020
Messages
118
cool, thanks for the tip.

i use firefox, where/ how do i edit the "md-limit-data" entry? how do i find it in local storage ?
  • Open any page on the mangadex.org domain (you can only see the storage for the domain open in the tab)
  • Open browser tools with Hamburger Menu + More Tools + Web Developer Tools or Ctrl+Shift+I or F12
  • One of tabs in the tools is called Storage, with a filing cabinet icon
  • There will be a list: Cache Storage, Cookies, Indexed DB, Local Storage, Session Storage
  • The value to change is in Local Storage + https://mangadex.org/
  • Look for md-limit-data:{"lastSavedAt":"2026-06-02T00:00:00.000Z","data":{"0":10,"1":0}}
  • Double click the value to edit it and change the part that says "data":{"0":10,"1":0} to something like "data":{"0":-1000000,"1":0}
In the browser tools, there is also a console. If you find it easier to copy/paste scripts into that, then pasting this and hitting enter when you see the overlay will do the same thing as above.
JavaScript:
(() => {localStorage.setItem("md-limit-data", JSON.stringify({lastSavedAt: new Date().toISOString(), data: {"0": Number.MIN_SAFE_INTEGER, "1": 0}}));})()
 

Users who are viewing this thread

Top