From c9f463c2ed609bf0bbb0f3c1011e961a9150fdab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Quintana?= <43949299+cesar19004@users.noreply.github.com> Date: Sun, 1 Sep 2024 16:12:36 -0600 Subject: [PATCH] fix #1274 Since manifest v3 `execute_browser_action` is no longer available, use the `execute_action` command instead https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/commands --- manifests/manifest-firefox.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/manifest-firefox.json b/manifests/manifest-firefox.json index 9b8da2e8..a521e4df 100644 --- a/manifests/manifest-firefox.json +++ b/manifests/manifest-firefox.json @@ -28,7 +28,7 @@ "scripts": ["dist/background.js"] }, "commands": { - "_execute_browser_action": {}, + "_execute_action": {}, "scan-qr": { "description": "Scan a QR code" },