NURIKABE
by
noromanba
2014-12-26 [2014/12/26 06:15:56]
Twitter wallpaper to mono-color
@@ -1,13 +1,22 @@
/*
* @title NURIKABE
- * @description Twitter wallpaper to mono-color. UserScript https://userscripts.org/scripts/show/139133
+ * @description Twitter wallpaper to mono-color
* @include http://twitter.com/*
* @include https://twitter.com/*
- * @copyright (c) 2012 noromanba (https://www.hatena.ne.jp/noromanba/)
* @author noromanba
* @license MIT License http://nrm.mit-license.org/2012
- * @require https://raw.github.com/gist/3172886/nurikabe.user.js
+ * @javascript_url
*/
-// Devel
-// https://gist.github.com/3172886
+// UserScript
+// https://gist.github.com/3172886
+
+(function () {
+ var bgImg;
+ if (!(/^https?:\/\/twitter\.com\/\w+/.test(location.href)) ||
+ !(bgImg = document.querySelector('.js-user-style-bg-img'))) {
+ return;
+ }
+
+ bgImg.textContent = '';
+})();
/*
* @title NURIKABE
* @description Twitter wallpaper to mono-color
* @include http://twitter.com/*
* @include https://twitter.com/*
* @author noromanba
* @license MIT License http://nrm.mit-license.org/2012
* @javascript_url
*/
// UserScript
// https://gist.github.com/3172886
(function () {
var bgImg;
if (!(/^https?:\/\/twitter\.com\/\w+/.test(location.href)) ||
!(bgImg = document.querySelector('.js-user-style-bg-img'))) {
return;
}
bgImg.textContent = '';
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。