This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM invert, zoom in the screen and turn on high contrast | |
| GUI + | |
| DELAY 100 | |
| CTRL ALT i | |
| DELAY 100 | |
| CTRL ALT SPACE | |
| DELAY 100 | |
| GUI h | |
| DELAY 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ALUpdate(){for(let a of document.querySelectorAll("al"))a.innerHTML=a.innerHTML.replace(/(?<!<!--autolink-->|href=")https?:\/\/(www\.)?[-a-z0-9@:%._\+~#=]{1,256}\.[a-z0-9()]{1,6}\b([-a-z0-9()@:%_\+.~#?&//=]*)/gi,'<a href="$&" target="_blank"><!--autolink-->$&</a>')}let oldContent;setInterval(()=>{oldContent!=document.body.innerHTML&&(oldContent=document.body.innerHTML,ALUpdate())}) |