Only open the info page on install

This commit is contained in:
Alyssa X 2022-01-14 18:47:40 +00:00
parent 06bc534bc7
commit 11367af2e3
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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": {