changeset 42:456614d0a9ca

Remove lightbox as well Change indentation to 4
author nanaya <me@nanaya.pro>
date Thu, 27 Jul 2017 21:25:33 +0900
parents 1ca21c3adcf0
children f52f5727818f
files cuffs-hulotte-popup.user.js
diffstat 1 files changed, 18 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/cuffs-hulotte-popup.user.js	Fri Jul 21 19:18:31 2017 +0900
+++ b/cuffs-hulotte-popup.user.js	Thu Jul 27 21:25:33 2017 +0900
@@ -1,8 +1,8 @@
 // ==UserScript==
-// @name         Cuffs/Hulotte popup disable
+// @name         Cuffs/Hulotte tuning
 // @namespace    https://myconan.net
-// @version      1.0.5
-// @description  Strip out Cuffs/Hulotte age confirmation popup
+// @version      1.0.7
+// @description  Strip out Cuffs/Hulotte age confirmation popup, disables lightbox
 // @author       nanaya
 // @match        http://www.cuffs.co.jp/*
 // @match        http://www.cuffs-cube.jp/*
@@ -12,18 +12,22 @@
 // ==/UserScript==
 
 ;(function() {
-  "use strict";
+    "use strict";
+
+    var $ = jQuery;
 
-  if (document.querySelector('body > #mainContent') == null) {
-    return;
-  }
+    if (document.querySelector('body > #mainContent') != null) {
+        var styleEl = document.createElement('style');
+        document.head.appendChild(styleEl);
+        var styleSheet = styleEl.sheet;
 
-  var styleEl = document.createElement('style');
-  document.head.appendChild(styleEl);
-  var styleSheet = styleEl.sheet;
+        styleSheet.insertRule(
+            'body > :not(#mainContent) { display: none !important; }',
+            styleSheet.cssRules.length
+        );
+    }
 
-  styleSheet.insertRule(
-    'body > :not(#mainContent) { display: none !important; }',
-    styleSheet.cssRules.length
-  );
+    $(function () {
+        $('.cboxElement').removeClass('cboxElement');
+    });
 }).call();