From 70e206ba59d6d6d794e5aa1dedb56038376fd043 Mon Sep 17 00:00:00 2001 From: shinigami-eyes <43276258+shinigami-eyes@users.noreply.github.com> Date: Tue, 30 Apr 2019 21:59:12 +0200 Subject: [PATCH] Don't let the browser use the default blue/purple color for synthesized YouTube channel link-title --- extension/content.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extension/content.js b/extension/content.js index 7ff82e3..259f98c 100644 --- a/extension/content.js +++ b/extension/content.js @@ -174,6 +174,7 @@ function updateYouTubeChannelHeader() { replacement.style.fontWeight = '400'; replacement.style.lineHeight = '3rem'; replacement.style.textDecoration = 'none'; + replacement.style.color = 'black'; } replacement.textContent = lastAppliedYouTubeTitle; replacement.href = lastAppliedYouTubeUrl;