Skip to content

Instantly share code, notes, and snippets.

@jilink
Created July 8, 2022 14:39
Show Gist options
  • Save jilink/fee8cf751c238aaa473d41b20c2846a9 to your computer and use it in GitHub Desktop.
Save jilink/fee8cf751c238aaa473d41b20c2846a9 to your computer and use it in GitHub Desktop.
Tuto bookmarklet - Change text to orange
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