diff --git a/js/background.js b/js/background.js
index 9c9e7dd..c0b8a3e 100755
--- a/js/background.js
+++ b/js/background.js
@@ -144,13 +144,23 @@ chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
}
document.getElementById('p+greatdivide_card').innerHTML = `
+
+
+
+ Last Round Seen
+
+
+ ${ (stats.LastRoundSeen === 0) ? '-' : stats.LastRoundSeen }
+
+
+
Kills
- ${stats.Kills.toLocaleString()} (${stats.UniqueKills.toLocaleString()} unique)
+ ${stats.Kills.toLocaleString()} (${stats.UniqueKills.toLocaleString()} unique)
@@ -207,6 +217,34 @@ chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
${stats.AirdropsCollected}
+
+
+
+
+ Monoliths Destroyed
+
+
+ ${stats.ObelisksDestroyed}
+
+
+
+
+
+ Blocks Placed
+
+
+ ${stats.BlocksPlaced} (${stats.BlocksDestroyed} destroyed)
+
+
+
+
+
+ Headshots
+
+
+ ${stats.Headshots}
+
+
`
const Script = document.createElement('script');