So I am playing a game that announces the ability to change speed with the L button (i don't know if this is default or not). But it works, changing from 1, 1.25, 1.5, 2, 3, 5 and 10x speed. The problem is, the perfect speed for me for this game is 2x, but when I install the script to hide the text box, it only works on certain speeds.. most speeds, if counting the doubleclick necessary on 1.5 speed. It works on 3x. BUT NOT ON 2X - so I have to toggle speed around 7 options to alter between hide text and then back to my appropriate speed.
This sucks, is there anything I can do ?
So, as far as I know, these plugins work by copying the *.js file (in this case the HIME_HMSblabla.js) into www\js\plugins and creating a line in the game's 'plugins.js' that makes the game load said plugin at start, too.
And as such, the plugin you add through the steps laid out in the OP, will be loaded as last (because that's just how the .bat file rolls - adds the line needed to load the plugin to the end of plugins.js).
You can try moving that line
{"name":"HIME_HMSHideMessageWindow","status":true,"description":"","parameters":{"Hide Button":"shift"}}
to other places in plugins.js, like first line in the plugins list, or maybe somewhere in the middle - just remember that apart from the very last, all plugins listed there (in a similar format) will have to have a ',' (a comma) at the end of their lines, because yeah, it's a list. Maybe it won't clash with whatever it's clashing with, then. (though not really hopeful)
It (plugins.js) has to end though as such:
{"name":"anotherblabla","status":true,"description":"","parameters":{}}
,
{"name":"blablabla","status":true,"description":"","parameters":{}}
,
{"name":"blabla","status":true,"description":"","parameters":{}}
];
So ',' at the end for every line but for the last item in the plugins list...
...and I think I'm making this unnecessarily over-complicated maybe lol.
TLDR: I just happened here at the right time to see your new post, I'd suggest a good reading through the thread here (e.g. first page, 6th post!), maybe give the other such plugin in here a try too; also, what I wrote in this post a little bit up, too xD