25
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ブラウザで開いているサイトを、直接編集できるようにするブックマークレット

Last updated at Posted at 2014-12-16

地味にべんり。

HTML5 の contenteditable 属性を true にすることで、表示されている内容をブラウザから直接書き換えることができるようになります。

ということで <body>タグの contenteditable属性をオン/オフできるようにするブックマークレットを作った。

コードはこちら

javascript:(function(b){var a = b.getAttribute('contenteditable'); b.setAttribute('contenteditable', (a !== 'true' && a !== ''));})(document.body);

呼ばれるたびに編集モードがオン/オフになる感じです。地味にべんり。

25
24
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?