/*
* @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; }');
})();