From e719a80f1f8649213395ba79cb608fc0b05e4339 Mon Sep 17 00:00:00 2001 From: mehbark Date: Wed, 10 Jul 2024 19:51:24 -0400 Subject: [PATCH] name-color 0.2 (- debug oops) --- userscripts/name-color.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/userscripts/name-color.js b/userscripts/name-color.js index b9f4564..e927294 100644 --- a/userscripts/name-color.js +++ b/userscripts/name-color.js @@ -55,15 +55,12 @@ function doit() { document.head.querySelectorAll(".name-color-stylesheet").forEach(s => s.remove()); style2.className = "name-color-stylesheet"; }; - style2.count = style.count + 1; - console.log(style2.count); document.head.appendChild(style2); } else { style = document.createElement("link"); style.className = "name-color-stylesheet"; style.rel = "stylesheet"; style.href = url.toString(); - style.count = 0; document.head.appendChild(style); } }