diff tweetdeck-large-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
line wrap: on
line diff
--- a/tweetdeck-large-image.user.js	Sun Jan 15 23:24:03 2023 +0900
+++ b/tweetdeck-large-image.user.js	Sun Jan 15 23:33:41 2023 +0900
@@ -1,17 +1,17 @@
 // ==UserScript==
 // @name         Tweetdeck large image
-// @namespace    https://myconan.net
+// @namespace    https://nanaya.net
 // @version      2.0.9
 // @description  No more stupid link for images in tweetdeck
 // @author       nanaya
 // @match        https://tweetdeck.twitter.com/*
 // @grant        none
-// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/tweetdeck-large-image.user.js
+// @downloadURL  https://hg.nanaya.net/ec-userscripts/raw-file/tip/tweetdeck-large-image.user.js
 // ==/UserScript==
 
-(function () {
-  'use strict';
+'use strict';
 
+function origLink () {
   const fix = function (link) {
     // basic sanity check
     if (!link.classList.contains('js-media-image-link')) {
@@ -82,4 +82,6 @@
   observer.observe(document, { childList: true, subtree: true });
   // initial run on existing document
   run();
-}).call();
+}
+
+origLink();