diff pixiv-direct-external-link.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/pixiv-direct-external-link.user.js	Sun Jan 15 23:24:03 2023 +0900
+++ b/pixiv-direct-external-link.user.js	Sun Jan 15 23:33:41 2023 +0900
@@ -1,18 +1,18 @@
 // ==UserScript==
 // @name         pixiv direct external link
-// @namespace    https://myconan.net
+// @namespace    https://nanaya.net
 // @version      1.1.5
 // @description  Make proper link on pixiv pages
 // @author       nanaya
 // @match        http://www.pixiv.net/*
 // @grant        none
-// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/pixiv-direct-external-link.user.js
+// @downloadURL  https://hg.nanaya.net/ec-userscripts/raw-file/tip/pixiv-direct-external-link.user.js
 // ==/UserScript==
 
+'use strict';
+
 /* global $ */
-(function () {
-  'use strict';
-
+function directLink () {
   const fixLink = function (_i, el) {
     const $el = $(el);
     const url = decodeURIComponent($el.attr('href').replace(/^\/?jump.php\?/, ''));
@@ -22,4 +22,6 @@
 
   $("[href^='jump.php?']").each(fixLink);
   $("[href^='/jump.php?']").each(fixLink);
-}).call();
+}
+
+directLink();