Skip to content

Instantly share code, notes, and snippets.

@brendandahl
Created November 8, 2018 22:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brendandahl/f3be854af7af882e605ea6673ea6b0ce to your computer and use it in GitHub Desktop.
Save brendandahl/f3be854af7af882e605ea6673ea6b0ce to your computer and use it in GitHub Desktop.
chrome url to file path
function toFile(url) { var chromeRegistry = Cc["@mozilla.org/chrome/chrome-registry;1"].getService(Ci.nsIChromeRegistry); return chromeRegistry.convertChromeURL(Services.io.newURI(url)).QueryInterface(Ci.nsIFileURL).file.path; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment