diff cuffs-hulotte-popup.user.js @ 109:ef21ef445fc6

Cleanups - wrap everything in function and call them last - fix namespace and update url
author nanaya <me@nanaya.net>
date Sun, 15 Jan 2023 23:33:41 +0900
parents 2c4470b73ad9
children d9dc190bccaf
line wrap: on
line diff
--- a/cuffs-hulotte-popup.user.js	Sun Jan 15 23:24:03 2023 +0900
+++ b/cuffs-hulotte-popup.user.js	Sun Jan 15 23:33:41 2023 +0900
@@ -1,6 +1,6 @@
 // ==UserScript==
 // @name         Cuffs/Hulotte tuning
-// @namespace    https://myconan.net
+// @namespace    https://nanaya.net
 // @version      1.1.6
 // @description  Strip out Cuffs/Hulotte age confirmation popup, disables lightbox
 // @author       nanaya
@@ -8,13 +8,13 @@
 // @match        http://www.cuffs-cube.jp/*
 // @match        http://hulotte.jp/*
 // @grant        none
-// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/cuffs-hulotte-popup.user.js
+// @downloadURL  https://hg.nanaya.net/ec-userscripts/raw-file/tip/cuffs-hulotte-popup.user.js
 // ==/UserScript==
 
+'use strict';
+
 /* global jQuery, stopload */
-(function () {
-  'use strict';
-
+function alwaysConsent () {
   const $ = jQuery;
   const rules = [];
   let i;
@@ -43,4 +43,6 @@
   if (typeof stopload === 'function') {
     stopload();
   }
-}).call();
+}
+
+alwaysConsent();