On Wed, Oct 7, 2009 at 10:19 AM, Aiasi <[email protected]> wrote: > 1) From what I can tell, extensions are disabled when I switch to > Incognito mode. This is what I would expect and happy to see it work > that way. Is this behavior intentional or are there plans to allow > extensions during Incognito?
There was some debate about this earlier. I think we settled on this behavior as something reasonable for the short term. I imagine we'll revisit this question in the long term. > 2) My Firefox plug-in records URLs that the user visits and writes a > local log file containing a list of these URLs. I'm not seeing a way > to write local files from a Chrome extension. Is there a way to > redirect "console.log()" to a file or is there any way to do this > currently? Any plans? Without including an NPAPI binary, extensions cannot write to the user's file system. You can keep a log of URLs in localStorage if you'd like persist them across browser runs. Eventually, we'll have database support so you can store the files in an SQL database. If you want to export the data to the file system, you can create a download with the list of files. Adam --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Chromium-extensions" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/chromium-extensions?hl=en -~----------~----~----~----~------~----~------~--~---
