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); } }