aリンク(タイトル)
ブックマークレットコード
1 2 3 4 5 6 7 |
javascript:( function(){var w = 120, h = 90, u = location.href, t = document.title; var a = '<a href="'+u+'" title="'+t+'" target="_blank" rel="noopener">', ca = '</a>'; var tag = a + t + ca ; prompt('ShareLink', tag); } )(); |
ブックマークレット実行結果
1 |
<a href="https://www.invisible-works.com/" title="Invisible Works | インビジブルワークス" target="_blank" rel="noopener">Invisible Works | インビジブルワークス</a> |
ページに貼付けた結果
[]ページタイトルaリンク(URL)
ブックマークレットコード
1 2 3 4 5 6 7 |
javascript:( function(){var w = 120, h = 90, u = location.href, t = document.title; var a = '<a href="'+u+'" title="'+t+'" target="_blank" rel="noopener">', ca = '</a>'; var tag = '<p style="margin-block-end: 0em; margin-block-start: 0em;">[] '+ t + '</p>' + a + u + ca ; prompt('ShareLink', tag); } )(); |
ブックマークレット実行結果
1 |
<p style="margin-block-end: 0em; margin-block-start: 0em;">[] Invisible Works | インビジブルワークス</p><a href="https://www.invisible-works.com/" title="Invisible Works | インビジブルワークス" target="_blank" rel="noopener">https://www.invisible-works.com/</a> |
ページに貼付けた結果
[] Invisible Works | インビジブルワークス
00_Top
C#
[] C#関連全記事 | Invisible Works
Raspberry pi (ラズパイ)
[]
...
heartrailsさんのAPIを使用したリンク作成
ブックマークレットコード
1 2 3 4 5 6 7 8 |
javascript:( function(){ var w = 120, h = 90, u = location.href, t = document.title; var a = '<a href="'+u+'" title="'+t+'" target="_blank">', ca = '</a>'; var img = '<img src="http://capture.heartrails.com/' +w+'x'+h+'/shadow?'+u+'" width="'+w+'" height="'+h+'" style="float: left;">'; var hatena = '<a href="http://b.hatena.ne.jp/entry/' +u+'"><img src="http://b.hatena.ne.jp/entry/image/' +u+'" alt="はてなブックマーク - '+t+'" title="はてなブックマーク - '+t+'"></a>'; var tag = '<div class="sharelink" style="padding: 6px; border: 1px solid #aaaaaa;">' + a + img + ca + a + t + ca + hatena + '<br style="clear: both;" /></div>';prompt('ShareLink', tag); })(); |
ブックマークレット実行結果
1 |
<div class="sharelink" style="padding: 6px; border: 1px solid #aaaaaa;"><a href="https://www.invisible-works.com/" title="Invisible Works | インビジブルワークス" target="_blank" rel="noopener"><img src="http://capture.heartrails.com/120x90/shadow?https://www.invisible-works.com/" width="120" height="90" style="float: left;"></a><a href="https://www.invisible-works.com/" title="Invisible Works | インビジブルワークス" target="_blank" rel="noopener">Invisible Works | インビジブルワークス</a><a href="http://b.hatena.ne.jp/entry/https://www.invisible-works.com/"><img src="http://b.hatena.ne.jp/entry/image/https://www.invisible-works.com/" alt="はてなブックマーク - Invisible Works | インビジブルワークス" title="はてなブックマーク - Invisible Works | インビジブルワークス"></a><br style="clear: both;" /></div> |
コメント