Skip to content

Instantly share code, notes, and snippets.

@rskull
Last active December 19, 2015 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rskull/5972519 to your computer and use it in GitHub Desktop.
Save rskull/5972519 to your computer and use it in GitHub Desktop.
ウェブページを直接編集できます!トグルでON/OFF切り替わります。
// Bookmarklet
javascript:(function(){var d=document,b=d.body;if(d.designMode=='off'){b.contentEditable=true;d.designMode='on';}else{b.contentEditable=false;d.designMode='off';}void 0;})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment