Skip to content

Instantly share code, notes, and snippets.

@juvian
Created January 3, 2022 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juvian/974ac3a3a50aa398bba002242909de7a to your computer and use it in GitHub Desktop.
Save juvian/974ac3a3a50aa398bba002242909de7a to your computer and use it in GitHub Desktop.
Neopets faster petpage textarea
// ==UserScript==
// @name Neopets faster petpage textarea
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disables spellcheck and stuff, less laggy
// @author Juvian
// @match https://www.neopets.com/editpage.phtml*
// @icon https://www.google.com/s2/favicons?domain=neopets.com
// @grant none
// ==/UserScript==
el = document.querySelector('form[action="/preview_homepage.phtml"] textarea');el.autocomplete = el.autocorrect = el.autocapitalize = "off"; el.spellcheck = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment