From 44a842b4b9a15d25e7353413d26ea5e4cae447a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Mon, 17 Oct 2022 15:42:53 +0200 Subject: [PATCH] Update updateURL and downloadURL --- animebytes_display_anime_names/display_anime_names.user.js | 4 ++-- hacker_news_redirect/hn_premii_com_redirect.user.js | 2 ++ last_fm_remove_titles/last_fm_remove_titles.user.js | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/animebytes_display_anime_names/display_anime_names.user.js b/animebytes_display_anime_names/display_anime_names.user.js index 0307572..3b94eb3 100644 --- a/animebytes_display_anime_names/display_anime_names.user.js +++ b/animebytes_display_anime_names/display_anime_names.user.js @@ -8,8 +8,8 @@ // @version 1.4 // @author Lukáš Kucharczyk // @description Displays anime titles underneath posters on the collage page. -// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.js -// @updateURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.js +// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.user.js +// @updateURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/animebytes_display_anime_names/display_anime_names.user.js // @supportURL https://git.kucharczyk.xyz/lukas/userscripts // ==/UserScript== let url_selectors = { diff --git a/hacker_news_redirect/hn_premii_com_redirect.user.js b/hacker_news_redirect/hn_premii_com_redirect.user.js index ca5cf27..8e631b8 100644 --- a/hacker_news_redirect/hn_premii_com_redirect.user.js +++ b/hacker_news_redirect/hn_premii_com_redirect.user.js @@ -6,6 +6,8 @@ // @version 1.0 // @author Lukas Kucharczyk (lukas@kucharczyk.xyz) // @description Automatically redirects Hacker News links to a more modern interface at hn.premii.com. +// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/hacker_news_redirect/hn_premii_com_redirect.user.js +// @updateURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/hacker_news_redirect/hn_premii_com_redirect.user.js // ==/UserScript== (function() { diff --git a/last_fm_remove_titles/last_fm_remove_titles.user.js b/last_fm_remove_titles/last_fm_remove_titles.user.js index 8e03383..566980c 100644 --- a/last_fm_remove_titles/last_fm_remove_titles.user.js +++ b/last_fm_remove_titles/last_fm_remove_titles.user.js @@ -6,7 +6,8 @@ // @version 1.1 // @author Lukáš Kucharczyk // @description Removes all title attributes of all tags. -// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/last_fm_remove_titles/last_fm_remove_titles.js +// @downloadURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/last_fm_remove_titles/last_fm_remove_titles.user.js +// @updateURL https://git.kucharczyk.xyz/lukas/userscripts/raw/branch/main/last_fm_remove_titles/last_fm_remove_titles.user.js // ==/UserScript== document.querySelectorAll('a[title]').forEach((el) => { el.removeAttribute('title')