Skip to content

Commit

Permalink
Merge branch 'dev' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
cpriest authored Dec 11, 2024
2 parents 466547c + 9fc0631 commit 1fd516b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "snaplinks3",
"FullName" : "Snap Links",
"version" : "3.1.14",
"version" : "3.1.15",
"description" : "Select multiple links, checkboxes and other elements and act on them such as open them in new tabs or check/un-check them.",
"author" : "Clint Priest <[email protected]>",
"license" : "MIT",
Expand Down
7 changes: 4 additions & 3 deletions src/background-scripts/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@ async function OpenUrlsInTabs(urls) {

for(let url of urls) {
let props = {
url: url,
active: Prefs.SwitchFocusToNewTab ? (--tabsLeft) === 0 : false, // Activate the last tab to be opened
index: startIndex + tabsOpened++,
url: url,
active: Prefs.SwitchFocusToNewTab ? (--tabsLeft) === 0 : false, // Activate the last tab to be opened
index: startIndex + tabsOpened++,
windowId: activeTab.windowId,
};

if(isFirefox) {
Expand Down

0 comments on commit 1fd516b

Please sign in to comment.