diff soranews-image.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/soranews-image.user.js	Sun Jan 15 23:24:03 2023 +0900
+++ b/soranews-image.user.js	Sun Jan 15 23:33:41 2023 +0900
@@ -1,17 +1,17 @@
 // ==UserScript==
 // @name         Soranews image fix
-// @namespace    https://myconan.net
+// @namespace    https://nanaya.net
 // @version      1.0.3
 // @description  Soranews lazy load image fix
 // @author       nanaya
 // @match        https://soranews24.com/*
 // @grant        none
-// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/soranews-image.user.js
+// @downloadURL  https://hg.nanaya.net/ec-userscripts/raw-file/tip/soranews-image.user.js
 // ==/UserScript==
 
-(function () {
-  'use strict';
+'use strict';
 
+function unlazy () {
   const fix = function (image) {
     // basic sanity check
     if (!image.classList.contains('lazy')) {
@@ -52,4 +52,6 @@
   observer.observe(document, { childList: true, subtree: true });
   // initial run on existing document
   run();
-}).call();
+}
+
+unlazy();