Created
July 8, 2022 14:39
-
-
Save jilink/fee8cf751c238aaa473d41b20c2846a9 to your computer and use it in GitHub Desktop.
Tuto bookmarklet - Change text to orange
This file contains 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
var all = document.getElementsByTagName("*"); | |
for (var i=0, max=all.length; i < max; i++) { | |
all[i].style.color = "orange"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment