mo-dal-iy
by
noromanba
2015-12-06 [2015/12/06 01:08:43]
hidden "darui" modal when not-login on facebook.com
-
(() => {
if (!/^www\.facebook\.com/.test(location.hostname) ||
!location.pathname.slice(1)) {
return;
}
var addStyle = (() => {
var parent = document.head || document.body || document.documentElement;
var style = document.createElement('style');
style.type = 'text/css';
parent.appendChild(style);
return (css) => {
style.appendChild(document.createTextNode(css + '\n'));
};
})();
addStyle('#dialog_0, #dialog_1 { display: none; }');
})();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。