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 です。

History

  1. 2024/03/06 04:56:46 - 03/06
  2. 2023/04/09 05:24:15 - 2023-04-09
  3. 2020/08/03 13:17:58 - 2020-08-03
  4. 2020/05/19 12:12:54 - 2020-05-19
  5. 2020/05/19 12:11:05 - 2020-05-19
  6. 2020/04/29 23:58:04 - 2020-04-29
  7. 2020/04/29 23:56:36 - 2020-04-29