7 comments

[ 4.6 ms ] story [ 25.6 ms ] thread
What are you going to do if you ever need to make any sort of change to the project? Rename the project?
222 is also the hex color, so the name would make sense still.
This is really neat! It would be great as a Greasemonkey script or a browser extension.

Nitpick, it's actually 221 bytes. And if you

  e.getAttribute('style')
on something that doesn't have style, it returns `null`. So maybe

  (e.getAttribute('style') || '')
Hey thanks, I had this condition in the script at one point, but then I started minifying it and although this makes the style attribute look a bit ugly the functionality stays the same, so it had to go.
This is awesome, thank you!