I've recently been contributing to the Enhanced Steam extension and I've found that a link fetched with chrome.extension.getURL simply opens about:blank and not the link described.
I do not believe it's actually a problem with the extension, but rather a problem in chrome. The link it supplies is valid (chrome-extension://pimjhgjngccknempdnehdeaihcjbajod/options.html) and navigating directly works correctly.
I tried chrome.tabs.create, but found that I am not allowed to use it due to the script modifying pre-existing content.
Any help or work arounds would be appreciated.
web_accessible_resources? - Rob Wwindow.location.href = "chrome-extension://pimjhgjngccknempdnehdeaihcjbajod/options.html";. An anchor tag click produces the same result. - Drazen Bjelovuk