Skip to content

Show installed extension version in the popup - #15

Merged
Luen merged 2 commits into
devfrom
copilot/add-version-number
Sep 4, 2026
Merged

Show installed extension version in the popup#15
Luen merged 2 commits into
devfrom
copilot/add-version-number

Conversation

Copilot AI commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

The extension already carried version metadata in the manifest, but there was no visible way to identify the installed build from the UI. This adds a lightweight version readout to the popup so users can confirm the exact extension version at a glance.

  • Popup version display

    • Added a dedicated version element to the popup UI.
    • Positioned it as low-emphasis metadata so it is visible without competing with the main controls.
  • Single source of truth

    • Reads the displayed value directly from the extension manifest at runtime via chrome.runtime.getManifest().version.
    • Avoids duplicating version strings in popup code or markup.
versionEl.textContent = `Version ${chrome.runtime.getManifest().version}`

Co-authored-by: Luen <1161837+Luen@users.noreply.github.com>
Copilot AI changed the title [WIP] Add version number to the extension for easy identification Show installed extension version in the popup Sep 4, 2026
Copilot AI requested a review from Luen September 4, 2026 05:59

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟢 Claude BugBot Analysis

This PR only adds a version label to the popup UI (HTML element, CSS style, and JS to populate it from chrome.runtime.getManifest().version); no logic errors, null dereferences, or security issues were found.

No bugs were detected in this PR.

@Luen
Luen marked this pull request as ready for review September 4, 2026 06:00
@Luen
Luen merged commit 30dfcff into dev Sep 4, 2026
8 checks passed

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved. The present automated review completed without findings that need human review, and no approval policy requires extra scrutiny. No reviewers were assigned.

Open in Web View Automation 

Sent by Cursor Approval Agent: Pull Request Router and Approver

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add version number to the extension for easy identification.

2 participants