You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2020. It is now read-only.
ChromePopUp/js/background.js
Line 37 in 7dc43f2
Open on new window!
complete soucre!
https://chrome.google.com/webstore/detail/duplicate-tab-shortcut-ke/pfippblampohahkkdoomekekmfbjkimg
open In new Tap
works
-> for entire URL use "window.location.href"
korretkt funktion
function openInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
}
call with: " openInNewTab(window.location.href);"
Dublicate:
StOv - https://goo.gl/9jhLsA
chrome.tabs.query({ active:true, },function(tab){ currenttab = tab[0] chrome.tabs.duplicate(currenttab.id); });