Scrapboxのリンク形式でタイトルとURLをalert
by
utgwkk
2019-10-03 [2019/10/03 16:27:04]
[タイトル URL]という形式でページのタイトルとURLをalertします
@@ -5,7 +5,9 @@
* @license MIT License
* @javascript_url
*/
-const content = `[${document.title} ${location.href}]`;
-alert(content);
-// これは動かない
-// copy(content);
+(function(){
+ const content = `[${document.title} ${location.href}]`;
+ alert(content);
+ // これは動かない
+ // copy(content)
+})();
/*
* @title Scrapboxのリンク形式でタイトルとURLをalert
* @description [タイトル URL]という形式でページのタイトルとURLをalertします
* @include *
* @license MIT License
* @javascript_url
*/
(function(){
const content = `[${document.title} ${location.href}]`;
alert(content);
// これは動かない
// copy(content)
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。