LoginSignup
0
0

More than 1 year has passed since last update.

Text Fragment を作るブックマークレット

Posted at

Text Fragment 便利ですね。ただ、 #:~:text= という文字列は覚えにくいし入力するのも手間なので、ブックマークレットしました。

javascript: (() => { const text = getSelection() + ''; if (text !== '') prompt('Text Fragment', `${location.href}#:~:text=${encodeURIComponent(text.trim())}`); else alert('テキストが選択されていません。'); })(); void 0;

あらかじめテキストを選択してからブックマークレットを起動すると、 Text Fragment の追記された URL がプロンプトに表示されます。後はコピペしてお使いください。
例えばこの URL であれば 、こんな感じで表示されるでしょう。
screenshot 2022-04-25 21.34.28.png
最近はそんな感じです。

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