Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 4096 character patch - narrative-device.herokuapp.com
- // @namespace Violentmonkey Scripts
- // @match https://narrative-device.herokuapp.com/*
- // @grant none
- // @version 1.0
- // @author whamer100
- // @description 2/9/2022, 5:06:19 PM
- // ==/UserScript==
- document.getElementById("theme1").maxLength=4096;
- document.getElementById("theme2").maxLength=4096;
- const instr = document.getElementsByClassName("instructions");
- if (instr.length >= 0) {
- const h2 = instr[0].getElementsByTagName("h2");
- if (h2.length >= 0) {
- h2[0].innerHTML += "<br><br>Patched to have 4096 character inputs.";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment