isNotoSerif!

    
      
  • /*
     * @title isNotoSerif!
     * @description fix "NotoSerif Subset OTF" wrong links; It's not to a Serif but a Sans! WTH
     * @include https://www.google.com/get/noto/help/cjk/
     * @license MIT License http://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    // "Region-specific Subset OpenType/CFF (Subset OTF)" section c.f.
    //  https://www.google.com/get/noto/help/cjk/
    
    (() => {
        'use strict';
    
        // XXX use XPath, smart
        // TODO assertion
        const subsetOTF = [...document.body.querySelectorAll('.cjk-downloads')].pop();
        const subsetOTFSerif = [...subsetOTF.querySelectorAll('tbody tr')].pop();
    
        Array.from(subsetOTFSerif.querySelectorAll([
          'a[href*="/NotoSans"]'
        ]), sans => sans.href = sans.href.replace(/\/NotoSans/, 'NotoSerif'));
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/04/07 01:26:07 - 2017-04-07
  2. 2017/04/07 01:19:35 - 2017-04-07
  3. 2017/04/05 09:53:45 - 2017-04-05
  4. 2017/04/05 09:41:46 - 2017-04-05
  5. 2017/04/05 04:29:45 - 2017-04-05
  6. 2017/04/05 04:22:01 - 2017-04-05