Skip to content

[PATCH] popup.html missing <meta name="description"> tag #208

@ormidales

Description

@ormidales

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

  • A <meta name="description"> tag is present in popup.html
  • The description is concise and accurately reflects the popup's purpose
  • No behaviour change

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions