diff --git a/README.md b/README.md
index 88a883f..0b6a772 100644
--- a/README.md
+++ b/README.md
@@ -104,7 +104,7 @@ We are going to mark the launchers on the following properties:
| ☠️ | Dead/Discontinued |
| 🧹 | No Ads |
| 📢 | Mild Ads |
-| 🚨 | Heavy Ads |
+| 🚨 | Excessive Ads |
| ⬆️⬇️ | Vertical Drawer |
| ⬅️➡️ | Horizontal Drawer |
| 🔀 | Multi-Layout Drawer |
diff --git a/index.html b/index.html
index 37d2a7e..18f12ac 100644
--- a/index.html
+++ b/index.html
@@ -513,7 +513,7 @@ const legend = [
{ sym:"☠️", def:"Dead / Discontinued" },
{ sym:"🧹", def:"No Ads" },
{ sym:"📢", def:"Mild Ads" },
- { sym:"🚨", def:"Heavy Ads" },
+ { sym:"🚨", def:"Excessive Ads" },
{ sym:"⬆️⬇️", def:"Vertical Drawer" },
{ sym:"⬅️➡️", def:"Horizontal Drawer" },
{ sym:"🔀", def:"Multi-Layout Drawer" },
@@ -537,7 +537,7 @@ function priceBadge(p) {
function adsLabel(a) {
if (a === 'none') return '🧹 No Ads';
if (a === 'mild') return '📢 Mild Ads';
- if (a === 'excessive') return '🚨 Heavy Ads';
+ if (a === 'excessive') return '🚨 Excessive Ads';
if (a === 'unknown') return '❔';
return '—';
}