diff --git a/extension/content.js b/extension/content.js index 3802b7e..ab2e2e3 100644 --- a/extension/content.js +++ b/extension/content.js @@ -2237,7 +2237,8 @@ function buildSportsScoreBadge(scoreInfo) { if (!scoreInfo) { return null; } - if (typeof scoreInfo.score !== 'number' || scoreInfo.score >= 0) { + // Show badge only for strictly positive scores; hide zero/negative + if (typeof scoreInfo.score !== 'number' || scoreInfo.score <= 0) { return null; } const badge = document.createElement('span');