diff --git a/last_fm_remove_titles/last_fm_remove_titles.js b/last_fm_remove_titles/last_fm_remove_titles.js new file mode 100644 index 0000000..7b05bff --- /dev/null +++ b/last_fm_remove_titles/last_fm_remove_titles.js @@ -0,0 +1,13 @@ +// ==UserScript== +// @name Remove title attributes +// @namespace Violentmonkey Scripts +// @match https://www.last.fm/music/ +// @grant none +// @version 1.0 +// @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 +// ==/UserScript== +document.querySelectorAll('a[title]').forEach((el) => { + el.removeAttribute('title') +}) \ No newline at end of file