parse kabu

  • /*
     * @title parse kabu
     * @description 株をスプレッドシートフォーマットに変換
     * @include http://*
     * @license MIT License
     * @require 
     */
    javascript: (() => { document.querySelectorAll('.post').forEach((e) => { const resNum = e.getElementsByClassName('number')[0].innerText; const mes = e.getElementsByClassName('message')[0]; const match = mes.innerText .split('\n') .map((line) => /^.*\d+( .+\/.+){6}$/.exec(line)) .filter(Boolean); if (!match || !match[0] || !match[0][0]) return; const table = document.createElement('table'); table.setAttribute('border', '1'); const tr = document.createElement('tr'); ['5' + 'ch', '-' + resNum] .concat(match[0][0].split(/ |\//g)) .forEach((c) => { const td = document.createElement('td'); td.appendChild(document.createTextNode(c)); tr.appendChild(td); }); table.appendChild(tr); mes.appendChild(table); }); })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2020/04/04 13:49:55 - 2020-04-04