3
5

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 3 years have passed since last update.

ワンクリックでタイトルとURLをいい感じにコピーする

Posted at

やりたいこと

Webページを共有するときに、URLだけじゃなくてタイトル付きでコピーしたい。

これじゃなくて
https://qiita.com/
これをコピーしたい
Qiita
https://qiita.com/

結論

以下のコードをブックマークレットとして保存して実行する。

bookmarklet
javascript:(function(){const e = document.createElement('textarea');e.value = `${document.title}\n${location.href}\n`;document.querySelector('body').append(e);e.select();document.execCommand('copy');e.remove();})();

前提

  • いちいち Console 開いてコード書いたりSnippet実行はしたくない。クリックでどうにかしたい。

   -> ブックマークレットを使う。

   -> textareaを使う。

結果

こんなコードを実行すれば解決!

(function() {
    const e = document.createElement('textarea');
    e.value = `${document.title}\n${location.href}\n`;
    document.querySelector('body').append(e);
    e.select();
    document.execCommand('copy');
    e.remove();
})();

ブックマークレットにコピーするためのコードはこちら。

bookmarklet
javascript:(function(){const e = document.createElement('textarea');e.value = `${document.title}\n${location.href}\n`;document.querySelector('body').append(e);e.select();document.execCommand('copy');e.remove();})();
3
5
0

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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?