Update updateURL and downloadURL

This commit is contained in:
2022-10-17 15:42:53 +02:00
parent 66599f516e
commit 44a842b4b9
3 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,8 @@
// @version 1.1
// @author Lukáš Kucharczyk
// @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==
document.querySelectorAll('a[title]').forEach((el) => {
el.removeAttribute('title')