Category: documentation
Severity: patch
File(s): popup.html
Description
The extension popup HTML page does not include a <meta name="description"> tag. While this has no functional impact on the extension itself, it is a standard HTML best practice and can be flagged by automated accessibility or lint tooling. Adding a concise description also helps contributors understand the page's purpose at a glance.
Problematic code example
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TruePath Exceptions</title>
<!-- no <meta name="description"> -->
Suggested fix
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="TruePath — manage geo-redirect exception domains" />
<title>TruePath Exceptions</title>
Acceptance criteria
Category: documentation
Severity: patch
File(s):
popup.htmlDescription
The extension popup HTML page does not include a
<meta name="description">tag. While this has no functional impact on the extension itself, it is a standard HTML best practice and can be flagged by automated accessibility or lint tooling. Adding a concise description also helps contributors understand the page's purpose at a glance.Problematic code example
Suggested fix
Acceptance criteria
<meta name="description">tag is present inpopup.html