>>9192
>>9316
cryptobin.co/q1s9f1a4
Password:
ChDRNF0eQqNaQup+EBs3Fw2G2j+bGauyzhFd5vhop3LCkqcnc8xELnZQPfmlvHm7
I wrote this script this evening. Picrel is what it looks like.
It uses tampermonkey, it probably won't work in greasemonkey. It's pretty simple, all it does is bold the words you want to highlight. I don't use 4chanX, so I didn't test to see if it works with that.
There's at least one bug - if you have "linkify URLs" turned on, if the URL has one of your search terms included it gets a little weird. There are probably many more besides that.
Check the "settings" menu and you can use it kinda like the filters settings. You can either add bare words, or regexes /between slashes/. Regexes *NOT* support flags, because it's pain in the ass to parse. Maybe I'll add them later. Everything is just treated as case-insensitive.
I want to add a way to select a highlight color, but that is more work and wanted to get a proof of concept out there.
If you want to change the highlight color, you can do so by adding custom CSS for now, for example setting a red background and black foreground:
.hys-highlight {
color: #000000 !important;
background-color: #ff0000 !important;
}
Let me know if it's helpful or not - if it is, I may work on it more.