This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name MAL random | |
// @version 4 | |
// @description picks random anime/manga from your MAL animelist/mangalist pages | |
// @author IA21 | |
// @match https://myanimelist.net/mangalist/* | |
// @match https://myanimelist.net/animelist/* | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
function getRandomInt(min, max) { | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
var e = document.createElement("span"); | |
e.innerHTML = "random   "; | |
e.style.color = "white"; | |
e.style.cursor = "pointer"; |