Skip to content

Instantly share code, notes, and snippets.

@dck-jp
Last active August 29, 2015 13:56
Show Gist options
  • Save dck-jp/8968335 to your computer and use it in GitHub Desktop.
Save dck-jp/8968335 to your computer and use it in GitHub Desktop.
Flip the image vertically In China Trademark Search Result
javascript:(function(){
var html = document.getElementsByTagName('Body')[0].innerHTML;
document.getElementsByTagName('Body')[0].innerHTML = html.replace(/<img .*src=\"([^\"\s]+)\"[^>]*>/,"<img id=target src=\"$1\" style=\"-webkit-transform: rotateX(180deg);-moz-transform: rotateX(180deg);transform:rotateX(180deg);\">");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment