I am creating a chrome extension using manifest v3 where I's like it to open a new tab for the user but it is denying me permission to the new tab.
I've tried opening the new tab by doing
window.open("chrome://new-tab-page", "_blank")
and also I've tried changing the current tab to new tab by doing
window.location.href = "chrome://new-tab-page"
I've been doing these in the content scripts, should I try background scripts? Please help and thank you.