Scrapboxのリンク形式でタイトルと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 です。

History

  1. 2019/10/03 16:27:04 - 2019-10-03
  2. 2019/10/03 09:39:47 - 2019-10-03
  3. 2019/10/03 09:39:09 - 2019-10-03
  4. 2019/10/03 09:38:23 - 2019-10-03
  5. 2019/10/03 09:37:58 - 2019-10-03
  6. 2019/10/03 09:35:56 - 2019-10-03
  7. 2019/10/03 09:35:02 - 2019-10-03