view cuffs-hulotte-popup.user.js @ 57:09f735548b2c

No more snippets
author nanaya <me@nanaya.pro>
date Fri, 20 Jul 2018 00:43:27 +0900
parents bc45afe111d8
children 960d452dea99
line wrap: on
line source

// ==UserScript==
// @name         Cuffs/Hulotte tuning
// @namespace    https://myconan.net
// @version      1.1.2
// @description  Strip out Cuffs/Hulotte age confirmation popup, disables lightbox
// @author       nanaya
// @match        http://www.cuffs.co.jp/*
// @match        http://www.cuffs-cube.jp/*
// @match        http://hulotte.jp/*
// @grant        none
// @downloadURL  https://bitbucket.org/nanayapro/ec-userscripts/raw/tip/cuffs-hulotte-popup.user.js
// ==/UserScript==

;(function() {
    "use strict";

    var $ = jQuery;
    var rules = [];
    var i;
    var styleEl;

    if (document.querySelector('body > #mainContent') != null) {
        rules.push('body > :not(#mainContent) { display: none !important; }');
    }

    rules.push('#load_bg { display: none !important; }');
    rules.push('body > .modal { display: none !important; }');
    rules.push('body > div[style*="position: fixed"] { display: none !important; }');

    for (i = 0; i < rules.length; i++) {
        styleEl = document.createElement('style');
        document.head.appendChild(styleEl);
        styleEl.sheet.insertRule(rules[i], 0);
    }

    $(function () {
        $('.cboxElement').removeClass('cboxElement');
    });

    // force remove modal
    $.cookie('modal', 'off');
    if (typeof stopload === 'function') {
        stopload();
    }
}).call();