sbquote

    @@ -8,7 +8,7 @@ */ async function sbquote() { - const quote = document.getSelection().toString(); + const quote = window.getSelection().toString(); const url = window.location.href; const title = document.title || document.querySelector('meta[property="og:title"]').content || ''; const text = ` @@ -17,6 +17,7 @@ `; await navigator.clipboard.writeText(text); + alert(text); } (() => {
  • /*
     * @title sbquote
     * @description Scrapboxに貼りやすいように選択中のテキストをクリップボードにコピー
     * @include http://*
     * @license MIT License
     * @require 
     * @javascript_url
     */
    
    async function sbquote() {
      const quote = window.getSelection().toString();
      const url = window.location.href;
      const title = document.title || document.querySelector('meta[property="og:title"]').content || '';
      const text = `
    > ${quote}
    > [${url} ${title}]
    `;
    
      await navigator.clipboard.writeText(text);
      alert(text);
    }
    
    (() => {
      document.addEventListener("touchend", sbquote, false);
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2022/08/17 18:57:53 - 2022-08-17
  2. 2022/08/17 18:36:07 - 2022-08-17
  3. 2022/08/17 18:28:19 - 2022-08-17
  4. 2022/08/17 17:49:05 - 2022-08-17
  5. 2022/08/17 17:48:11 - 2022-08-17
  6. 2022/08/17 17:23:20 - 2022-08-17
  7. 2022/08/17 17:14:21 - 2022-08-17