IG denoiser

    @@ -1,6 +1,6 @@ /* * @title IG denoiser - * @description hidden user comments on instagram.com for UserScript + * @description hidden user comments on instagram.com * @include https://www.instagram.com/* * @license MIT License https://opensource.org/licenses/MIT * @javascript_url
  • /*
     * @title IG denoiser
     * @description hidden user comments on instagram.com
     * @include https://www.instagram.com/*
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    // UserScript
    // https://gist.github.com/noromanba/1f369b316c1b43bdf0e337c6c5af1c80
    
    
    // e.g.
    // https://www.instagram.com/instagram/
    //  https://www.instagram.com/p/Bi0bUMBDaZZ/?taken-by=instagram
    // https://www.instagram.com/tofubeats/
    //  https://www.instagram.com/p/BiTlSowHP2x/?taken-by=tofubeats
    (() => {
        'use strict';
    
        // TBD omit
        if (!location.hostname.endsWith('.instagram.com')) {
            return;
        }
    
        const addStyle = (() => {
            const wall = document.head || document.body || document.documentElement;
    
            const style = wall.appendChild(Object.assign(document.createElement('style'), {
                type: 'text/css',
                charset: 'utf-8',
            }));
    
            return (css) => {
                style.appendChild(document.createTextNode(css + '\n'));
            };
        })();
    
    
        addStyle([
          'article ul li:not(:first-child)',
        ] + '{ display: none !important; }');
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2019/05/29 08:11:58 - 2019-05-29
  2. 2019/05/28 13:46:48 - 2019-05-28
  3. 2019/05/07 08:45:01 - 2019-05-07
  4. 2018/05/18 08:37:20 - 2018-05-18
  5. 2018/05/18 08:35:51 - 2018-05-18