I would like to be able to dynamically (at run-time) modify my
extension's popup, AND be able to specify a custom popup HTML file
that's loaded from my server.
In Firefox, I can easily accomplish this with XUL overlays which I can
specify at run-time (
https://developer.mozilla.org/en/
XUL_Overlays#Loading_Overlays_at_Run-time).
And document.loadOverlay() (
https://developer.mozilla.org/en/DOM/
document.loadOverlay) does allow me to specify a 'remote' URL for the
overlay.
Is the same possible in Chrome?
I've been playing with chrome.browserAction.setPopup( details ) API
(
http://code.google.com/chrome/extensions/browserAction.html#method-
setPopup), but it seems that the "details.popup" param must specify a
local file, and not a remote URL.
Thanks