Nakashoku

    @@ -12,8 +12,15 @@ // https://shonenjumpplus.com/episode/10834108156632227683 // p.9- (() => { - document.body.style.filter ? - document.body.style.filter = '' : - document.body.style.filter = 'grayscale(1) contrast(150%)'; + const style = document.body.style; + + style.filter ? + style.filter = '' : + style.filter = [ + 'grayscale(1)', + 'brightness(120%)', + //'contrast(120%)', + //'saturate(120%)', + ].join(' '); })();
  • /*
     * @title Nakashoku
     * @description de-color to scanned printable recycled colored paper
     * @include http://*
     * @include https://*
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    
    // e.g.
    // https://shonenjumpplus.com/episode/10834108156632227683
    // p.9-
    (() => {
        const style = document.body.style;
    
        style.filter ?
            style.filter = '' :
            style.filter = [
                    'grayscale(1)',
                    'brightness(120%)',
                    //'contrast(120%)',
                    //'saturate(120%)',
            ].join(' ');
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/07/18 15:34:24 - 2018-07-18
  2. 2018/07/18 14:50:30 - 2018-07-18