How to launch a new window in Google Chrome Manifest Version 3 Extension

Viewed 582
1 Answers
const url = "https://yourURL.com";
chrome.tabs.create({url, active:true});
Related