diff --git a/src/background.js b/src/background.js index d2a0c7b..e18be51 100644 --- a/src/background.js +++ b/src/background.js @@ -148,7 +148,7 @@ chrome.action.onClicked.addListener((tab) => { // Listen for the open omni shortcut chrome.commands.onCommand.addListener((command) => { - if (command = "open-omni") { + if (command == "open-omni") { chrome.tabs.query({active: true, currentWindow: true}, function(tabs){ chrome.tabs.sendMessage(tabs[0].id, {request: "open-omni"}); }); diff --git a/src/manifest.json b/src/manifest.json index c38449f..d0f7c8c 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "name": "Omni", "description": "Supercharge Chrome with commands, shortcuts, and more", "offline_enabled": true, - "version": "1.1.1", + "version": "1.1.2", "manifest_version": 3, "action": { "icons": {