Hi PhistucK,
Thanks again for the reply.
I do not intend to sound forward, but it seems that this is more of a Chrome extension question, rather than a basic web development question. I hope that my frustration does not come off as aggression.
What is the 'approved' way of opening links from the Popup.hmtl page?
I'm aware that, since Manifest Version 2, inline javascript is no longer usable by the extensions.
However, my point being that, despite the fact that I've used Google's tutorials to create the extension for Manifest v1, there is no clear way to transition to v2.
I have seen many posts on StackExchange and elsewhere pointing to the fact that you
could use the addEventListener, and still others saying that it is better to use the 'built in'
chrome.tabs.create( { url: "http://www.URLHERE.com"} ); I don't wish to use 'buttons' within the popup.html window, but rather textual 'links' in the traditional sense; would I be correct in thinking that the addEventListener is likely out?
Furthermore, it's not quite clear where the Chrome API code is to be included. Google's Developer page (
http://developer.chrome.com/extensions/tabs.html) simply explains the API syntax and then tells you to download and use a whole suite of examples.
In it's most simple sense, I just wish to know how to display web-links in the popup.html and open them in a new tab once clicked.
Do you have any advice on how to proceed?