view cuffs-hulotte-popup.user.js @ 136:1e64e81370a3 default tip

Add nginx-https
author nanaya <me@nanaya.net>
date Tue, 27 Feb 2024 01:17:43 +0900
parents 8de2d53a4cb1
children
line wrap: on
line source

// ==UserScript==
// @name        Cuffs/Hulotte tuning
// @namespace   https://nanaya.net
// @version     1.1.6
// @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://hg.nanaya.net/ec-userscripts/raw-file/tip/cuffs-hulotte-popup.user.js
// ==/UserScript==

'use strict';

/* global jQuery, stopload */
const $ = jQuery;
const rules = [];
let i;
let 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();
}