Scrapboxのリンク形式でタイトルとURLをコピー
@@ -5,9 +5,9 @@
* @license MIT License
* @javascript_url
*/
-(function(){
- const content = "[" + document.title + " " + location.href + "]";
- prompt('', content);
- // これは動かない
- // copy(content)
-})();
+(() => {
+ 'use strict';
+ const canonical = (document.querySelector('head link[rel="canonical"][href]') || {}).href || location.href;
+ const content = "[" + document.title + " " + location.href + "]";
+ prompt('[title url]', content);
+})();
/*
* @title Scrapboxのリンク形式でタイトルとURLをprompt
* @description [タイトル URL]という形式でページのタイトルとURLをpromptします
* @include *
* @license MIT License
* @javascript_url
*/
(() => {
'use strict';
const canonical = (document.querySelector('head link[rel="canonical"][href]') || {}).href || location.href;
const content = "[" + document.title + " " + location.href + "]";
prompt('[title url]', content);
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。