mirror of
https://github.com/alyssaxuu/omni.git
synced 2026-03-11 08:54:35 +00:00
Fix
This commit is contained in:
parent
0357595625
commit
f2e6341fe0
2 changed files with 2 additions and 2 deletions
|
|
@ -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"});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue