/*
* @title pixiv -modal
* @description hidden welcome-modal on pixiv for non-member
* @include http://www.pixiv.net/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
// UserScript
// https://gist.github.com/noromanba/1db185e65df3461a8091
(function () {
if (!/www\.pixiv\.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('#register-introduction-modal { display: none !important; }');
})();