calm909

  • /*
     * @title calm909
     * @description stop perlin-noise and suppress backgraund-image
     * @include http://hitode909.hatenablog.com/*
     * @contributor noromanba   http://let.hatelabo.jp/noromanba/let/hJmdwJSV5fJk (Fork of)
     * @license MIT License http://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    // http://hitode909.github.io/hatenablog-unofficial-modules/haikei-gunyagunya2.js
    (function () {
        var addStyle = (function () {
            var parent = document.head || document.documentElement || document.body;
    
            var style = document.createElement('style');
            style.type = 'text/css';
            parent.appendChild(style);
    
            return function (css) {
                style.appendChild(document.createTextNode(css + '\n'));
            };
        })();
    
        var noise = window.noise || {};
        Object.keys(noise).forEach(function (k) { noise[k] = function () {}; });
    
        addStyle('body { background-image: url("") !important; }');
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/05/16 06:22:14 - 2014-05-16
  2. 2014/05/16 04:16:33 - 2014-05-16
  3. 2014/05/16 04:03:19 - 2014-05-16