Published
- 1 min read
chrome extension popup ~url ~link ~open tab
The solution for this is noted below
chrome extension popup ~url ~link ~open tab
Solution
window.addEventListener('click', function (e) {
if (e.target.href !== undefined) {
chrome.tabs.create({ url: e.target.href })
}
})
Try other methods by searching on the site. That is if this doesn’t work