LoginSignup
3
3

More than 5 years have passed since last update.

見てるページを参考リンクにするブックマークレット

Posted at

最近よくMarkdownに

### 参考
+ [xxxについて](http://xxx)

みたいな参考リンクを貼る機会が多いので、ブックマークレットを作ってみた。
Chrome拡張はよく作るけど、BookMarkLetは初めて作った。楽で良いね。

適当に作ったブックマークのURLを以下のソースに変更すればOK

javascript:
var url = location.href;
var title = document.getElementsByTagName('title')[0].text;
alert('+ [' + title + '](' + url + ')');

こんな感じのポップアップが出るので、適当にコピーして使う。
スクリーンショット 2016-04-04 10.28.13.png

MacのChromeとSafariで動いた。まぁ多分大体動くのではなかろうか。

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