Nevri posted:
It would be cool to implement Dynasty Title Rethingifier into Thingifier as well.
Ah yeah, I haven't done that yet, have I? I use that script myself so I'd forgotten I hadn't done so yet, lol.
Also if anyone's interested in the mousewheel thing, he's the script code if you know how to create a script yourself. I'd upload it to Github or something but I'm a bit busy today.
// ==UserScript==
// @name Dynasty Mousewheel Page Control
// @namespace Alice
// @version 0.1
// @description try to take over the world!
// @author Alice
// @include https://dynasty-scans.com/*
// @grant none
// ==/UserScript==
const left = document.querySelector(".left"), right = document.querySelector(".right");
document.body.addEventListener("wheel", function(e) {
//console.log(e);
if (e.target.id === "image" || e.target.classList.contains("left") || e.target.classList.contains("right") || e.target.parentNode.id === "image") {
e.preventDefault();
if (e.deltaY < 0) {
left.click();
} else {
right.click();
}
}
});