mirror of
https://github.com/alyssaxuu/omni.git
synced 2026-03-11 08:54:35 +00:00
Only open the info page on install
This commit is contained in:
parent
06bc534bc7
commit
11367af2e3
2 changed files with 4 additions and 2 deletions
|
|
@ -148,7 +148,9 @@ chrome.runtime.onInstalled.addListener(function (object) {
|
|||
}
|
||||
});
|
||||
|
||||
chrome.tabs.create({url: "https://alyssax.com/omni/"});
|
||||
if (object.reason == "install") {
|
||||
chrome.tabs.create({url: "https://alyssax.com/omni/"});
|
||||
}
|
||||
});
|
||||
|
||||
// Check when the extension button is clicked
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Omni",
|
||||
"description": "Supercharge Chrome with commands, shortcuts, and more",
|
||||
"offline_enabled": true,
|
||||
"version": "1.2.7",
|
||||
"version": "1.2.8",
|
||||
"manifest_version": 3,
|
||||
"action": {
|
||||
"icons": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue