Update updateURL and downloadURL
This commit is contained in:
parent
66599f516e
commit
44a842b4b9
|
@ -8,8 +8,8 @@
|
||||||
// @version 1.4
|
// @version 1.4
|
||||||
// @author Lukáš Kucharczyk
|
// @author Lukáš Kucharczyk
|
||||||
// @description Displays anime titles underneath posters on the collage page.
|
// @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
|
// @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.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
|
// @supportURL https://git.kucharczyk.xyz/lukas/userscripts
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
let url_selectors = {
|
let url_selectors = {
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
// @version 1.0
|
// @version 1.0
|
||||||
// @author Lukas Kucharczyk (lukas@kucharczyk.xyz)
|
// @author Lukas Kucharczyk (lukas@kucharczyk.xyz)
|
||||||
// @description Automatically redirects Hacker News links to a more modern interface at hn.premii.com.
|
// @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==
|
// ==/UserScript==
|
||||||
(function()
|
(function()
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
// @version 1.1
|
// @version 1.1
|
||||||
// @author Lukáš Kucharczyk
|
// @author Lukáš Kucharczyk
|
||||||
// @description Removes all title attributes of all <a> tags.
|
// @description Removes all title attributes of all <a> 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==
|
// ==/UserScript==
|
||||||
document.querySelectorAll('a[title]').forEach((el) => {
|
document.querySelectorAll('a[title]').forEach((el) => {
|
||||||
el.removeAttribute('title')
|
el.removeAttribute('title')
|
||||||
|
|
Loading…
Reference in New Issue