Scrapbox link
@@ -1,7 +1,20 @@
/*
* @title Scrapbox link
- * @description a bookmarklet to create link text with bookmarklet
- * @license MIT License
+ * @description prompt Scrapbox link syntax
+ * @include http://*
+ * @include https://*
+ * @contributor that http://let.hatelabo.jp/that/let/hJmettz9lbQm (Fork of)
+ * @license MIT License https://opensource.org/licenses/MIT
*/
-javascript:(function(d,url,w){var title=d.getElementsByTagName('title')[0].innerHTML.trim();text='['+title+' '+url+']'; w.prompt('Copy to clipboard: ⌘+C or Ctrl+C',text);})(document, location.href, window)
+
+// - fix Global Namespace Pollution by `text`
+(function() {
+ var title = document.title.trim();
+ var text = '[' + title + ' ' + location.href + ']';
+ window.prompt('Copy to clipboard: ⌘+C or Ctrl+C', text);
+})();
+
+/* mobile
+javascript:(function(){var title=document.title.trim(),text='['+title+' '+location.href+']';window.prompt('Copy to clipboard:⌘+C or Ctrl+C',text);})();
+*/
/*
* @title Scrapbox link
* @description prompt Scrapbox link syntax
* @include http://*
* @include https://*
* @contributor that http://let.hatelabo.jp/that/let/hJmettz9lbQm (Fork of)
* @license MIT License https://opensource.org/licenses/MIT
*/
// - fix Global Namespace Pollution by `text`
(function() {
var title = document.title.trim();
var text = '[' + title + ' ' + location.href + ']';
window.prompt('Copy to clipboard: ⌘+C or Ctrl+C', text);
})();
/* mobile
javascript:(function(){var title=document.title.trim(),text='['+title+' '+location.href+']';window.prompt('Copy to clipboard:⌘+C or Ctrl+C',text);})();
*/
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。