From 5a563a32d3afc67d264ae1cd670e6df27ec6fd52 Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Tue, 9 Jun 2026 22:06:58 -0400 Subject: [PATCH] rename to qr-clip --- manifest.json | 4 ++-- popup.html | 2 +- popup.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index 045d903..502a1ee 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "manifest_version": 3, - "name": "QR Clipboard", + "name": "QR Clip", "version": "1.0.0", "description": "Screenshot the visible tab, decode any QR codes, and copy the result to the clipboard.", @@ -17,7 +17,7 @@ "browser_specific_settings": { "gecko": { - "id": "qr-clipboard@timothykim", + "id": "qr-clip@timothykim", "strict_min_version": "115.0" } } diff --git a/popup.html b/popup.html index 060050b..5614f60 100644 --- a/popup.html +++ b/popup.html @@ -71,7 +71,7 @@
-

QR Clipboard

+

QR Clip

diff --git a/popup.js b/popup.js index dfebf85..329c777 100644 --- a/popup.js +++ b/popup.js @@ -1,4 +1,4 @@ -// QR Clipboard +// QR Clip // // The popup shows a persistent log of every QR code ever decoded. // Clicking "Scan visible tab" captures the viewport, decodes all QR codes, @@ -187,12 +187,12 @@ async function scan() { const codes = decodeAll(imageData); if (codes.length === 0) { - console.log("[QR Clipboard] No QR codes found."); + console.log("[QR Clip] No QR codes found."); setStatus("No QR codes found in the visible area.", "muted"); return; } - console.log(`[QR Clipboard] Decoded ${codes.length} code(s):`, codes); + console.log(`[QR Clip] Decoded ${codes.length} code(s):`, codes); const now = new Date().toISOString(); const url = tab ? tab.url : "";