Berlin Wall came down
by
noromanba
2015-01-22 [2015/01/22 01:54:26]
hidden strange wall
@@ -1,7 +1,8 @@
/*
- * @title FC2 GC
- * @description hidden strange wall on FC2 for UserScript
+ * @title Berlin Wall came down
+ * @description hidden strange wall on FC2 and Seesaa
* @include http://*.fc2.com/*
+ * @include http://*.seesaa.net/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
@@ -11,7 +12,7 @@
(function () {
- if (!/fc2\.com$/.test(location.hostname)) return;
+ if (!/fc2\.com$|seesaa.net$/.test(location.hostname)) return;
var addStyle = (function () {
var parent = document.head || document.body || document.documentElement;
@@ -30,7 +31,8 @@
'.box:first-of-type',
'#fc2_ad_box',
//*/
- '#fc2_bottom_bnr'
+ '#fc2_bottom_bnr',
+ '#seesaa-bnr'
] + ' { display: none !important; }');
})();
/*
* @title Berlin Wall came down
* @description hidden strange wall on FC2 and Seesaa
* @include http://*.fc2.com/*
* @include http://*.seesaa.net/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
// UserScript
// https://gist.github.com/noromanba/a30cb8f26cc0ca3ad85d
(function () {
if (!/fc2\.com$|seesaa.net$/.test(location.hostname)) return;
var addStyle = (function () {
var parent = document.head || document.body || document.documentElement;
var style = document.createElement('style');
style.type = 'text/css';
parent.appendChild(style);
return function (css) {
style.appendChild(document.createTextNode(css + '\n'));
};
})();
addStyle([
/*
'.box:first-of-type',
'#fc2_ad_box',
//*/
'#fc2_bottom_bnr',
'#seesaa-bnr'
] + ' { display: none !important; }');
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。