From 3b1c6ab424323055214a1b0afa3eea5d5fa45dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 25 May 2021 11:30:33 +0200 Subject: [PATCH] Add last_fm_remove_titles.js --- last_fm_remove_titles/last_fm_remove_titles.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 last_fm_remove_titles/last_fm_remove_titles.js 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