function chromeToFileUrl(url) {
return Cc['@mozilla.org/chrome/chrome-registry;1']
.getService(Ci.nsIChromeRegistry)
.convertChromeURL(
Cc['@mozilla.org/network/io-service;1']
.getService(Ci.nsIIOService)
.newURI(url, null, null)).spec;
}
Convertire una chrome:// URL in una file:// URL
By bard - Posted on October 26th, 2007
== Codice ==