I\'m doing a Chrome extension and I got helped in this post here.
My problem now is how to open a new tab of chrome that has as URL the link I clicked in the
You should use chrome.tabs module to manually open the desired link in a new tab. Try using this jQuery snippet in your popup.html:
$(document).ready(function(){ $('body').on('click', 'a', function(){ chrome.tabs.create({url: $(this).attr('href')}); return false; }); });