1
1

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.

WebページタイトルとURLを一発でコピーできるBookmarklet

Posted at

個人的によく使うBookmarkletの紹介です。

出来ること: 現在表示しているWebページのタイトルとURLをポップアップしてくれて、コピペできる。
誰かに参考ページを紹介する際になどにURLだけ貼るとぶっきらぼうな感じになりますが、タイトルをつけるとわかりやすくなったりします。

コード:

(function() {
    window.prompt("Title+URL", document.title + "\r\n" + document.URL);
})();

Bookmarklet用に改行をなくして、プロトコルとして*javascript:*を追加:

javascript:(function(){window.prompt("Title+URL",document.title+"\r\n"+document.URL);})();

ブックマークバーにある適当なブックマークのURLを上記に入れ替え、そのブックマークボタンをクリックすると動作するようになります。

こんな感じで動きます。

image.png

一応、タイトルとURLを改行で分けて2段になるようにしてあります。

こんな感じで。

zamaezaaa - Qiita
https://qiita.com/zamaezaaa

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?