Skip to content

Commit 212e269

Browse files
committed
Extend main page description.
1 parent 589881d commit 212e269

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

index.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,18 @@
2020
</head>
2121
<body>
2222
<h1>URL Classifier Exceptions</h1>
23-
<p>This dashboard lists all URL Classifier Exceptions stored in RemoteSettings.</p>
23+
<p>
24+
This dashboard lists all exceptions for Firefox's (list based) Enhanced
25+
Tracking Protection (ETP). Exceptions may be applied when websites break
26+
due to tracker blocking. This ensures Firefox can protect the privacy of
27+
users while still keeping websites working. See
28+
<a href="https://wiki.mozilla.org/Security/Anti_tracking_policy#Policy_Exceptions"
29+
target="_blank"
30+
rel="noopener noreferrer"
31+
>our anti-tracking policy</a
32+
>
33+
for more information.
34+
</p>
2435
<app-root></app-root>
2536
</body>
2637
</html>

src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class App extends LitElement {
132132
}
133133
return html`
134134
<p>
135-
There are a total of ${this.records.length} exceptions on record.
135+
There are currently a total of ${this.records.length} exceptions on record.
136136
${this.records.filter((e) => !e.topLevelUrlPattern?.length).length} global exceptions and
137137
${this.records.filter((e) => e.topLevelUrlPattern?.length).length} per-site exceptions.
138138
${this.records.filter((e) => e.category === "baseline").length} of them are baseline

0 commit comments

Comments
 (0)