Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 782 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 782 Bytes

gmscripts

GreaseMonkey scripts

Changer.user.js

Changes some strings to other strings. To change the strings, edit the script itself. Edit the variable arReplacements. The first string is the string to look for, the second string is the string to change it to. Strings are case sensitive so don't forget variations of each word with initial caps.

  • "man":"blue" means change "man" to "blue" in the whole page. This will not change "Man" to "blue".
  • In variable arReplacements, words with apostrophes must come before singular words. So "man's" must come before "man".

Known problems

  • May not work properly with IE 8 or less and tables.

Change history

v0.01 Initial creation.

v0.03 Works but on whole words, but it uses 2 arrays: fromArr[] and toArr[].