Skip to content

Instantly share code, notes, and snippets.

@masuhajime
Last active August 29, 2015 14:18
Show Gist options
  • Save masuhajime/2f14ebf6a117ac61662f to your computer and use it in GitHub Desktop.
Save masuhajime/2f14ebf6a117ac61662f to your computer and use it in GitHub Desktop.
tracのpropsを削除するBookMarklet
javascript:(function(){
var e = document.getElementsByClassName('props');
var num = e.length;
for (var i = 0; i < num; i++) {
e[0].remove();
}
})();
@masuhajime
Copy link
Author

chromeでは動くの確認している

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment