🏠 Home 

Character pages Fix - MAL

Shows a next page button on the Top character pages and lets you see all Top character pages on MAL.


Install this script?
Author's suggested script

You may also like Total Duration Time + Total Episodes Of Any Animes Franchises.


Install this script
  1. // ==UserScript==
  2. // @name Character pages Fix - MAL
  3. // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
  4. // @version 1
  5. // @description Shows a next page button on the Top character pages and lets you see all Top character pages on MAL.
  6. // @author hacker09
  7. // @match https://myanimelist.net/character.php?limit=*
  8. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://myanimelist.net&size=64
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14. if (document.querySelector(".next") === null) {
  15. document.querySelector(".icon-top-ranking-page").insertAdjacentHTML('AfterEnd', `<span class="di-ib ml8 icon-top-ranking-page"> <a href="https://myanimelist.net/character.php?limit=${parseInt(location.href.match(/\d+/)[0])+50}" class="link-blue-box next">Next 50<i class="fa-solid fa-chevron-right ml4"></i></a></span>`);
  16. }
  17. })();