diff --git a/dock.html b/dock.html index 7fac8f5b..06c6c503 100644 --- a/dock.html +++ b/dock.html @@ -2277,6 +2277,12 @@ if (urlParams.has("fadeout")){ fadeout = true; } + + + var hideNumbers = false; + if (urlParams.has("hidenumbers")){ + hideNumbers = true; + } if (urlParams.has("swiperight")){ transitionType.push("swiperight"); @@ -4825,6 +4831,10 @@ return; } + if (hideNumbers && data.chatmessage && !data.contentimg && !data.hasDonation && (data.chatmessage === parseFloat(data.chatmessage))){ + return; + } + if (data.textonly){ // should be legacy compatible, since textonly is new. chatmessage = escapeHtml(chatmessage); // lets escape any < > ' " or other special characeters, since it would be dangerous as HTML. } diff --git a/manifest.json b/manifest.json index 11b0dbcb..a08f4805 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Social Stream Ninja", "description": "Powerful tooling to engage live chat on Youtube, Twitch, Zoom, and more", "manifest_version": 2, - "version": "1.67.15", + "version": "1.67.16", "homepage_url": "http://socialstream.ninja/", "icons": { "128": "icons/icon-128.png" diff --git a/popup.html b/popup.html index 98542d6d..ed3c853a 100644 --- a/popup.html +++ b/popup.html @@ -1127,6 +1127,12 @@