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 09b428b..a0ea89c 100644 --- a/last_fm_remove_titles/last_fm_remove_titles.user.js +++ b/last_fm_remove_titles/last_fm_remove_titles.user.js @@ -7,7 +7,6 @@ // @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.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')