Scrapboxのリンク形式でタイトルとURLをコピー

  • /*
     * @title Scrapboxのリンク形式でタイトルとURLをコピー
     * @description [タイトル URL]という形式でページのタイトルとURLをクリップボードにコピーします
     * @include *
     * @license MIT License
     * @javascript_url
     */
    (() => {
      'use strict';
      let canonical = (document.querySelector('head link[rel="canonical"][href]') || {}).href
      if (canonical && location.hash) {
        canonical = canonical + location.hash;
      }
      const replacedTitle = document.title.replaceAll('[', '[').replaceAll(']', ']');
      const content = "[" + replacedTitle + " " + (canonical || location.href) + "]";
      navigator.clipboard.writeText(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