calm909
by
noromanba
2014-05-16 [2014/05/16 06:22:14]
(Forked from
mild909 by
noromanba)
stop perlin-noise and suppress backgraund-image
@@ -1,13 +1,28 @@
/*
- * @title mild909
- * @description stop perlin-noise of backgraund-image
+ * @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 };');
})();
(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 です。