2

Is there a way to obtain/read cache files using a chrome extension without NPAPI but javascript?

I have tried searching with NPAPI but I am unable to find a good tutorial on it or how can it be done using NPAPI.

user782400
  • 1,617
  • 7
  • 30
  • 51

1 Answers1

1

Javascript is restricted from accessing the filesystem in all cases that I am aware of, though I admit that I don't know much about Chrome extensions.

The only way I know of to access arbitrary files would be with an NPAPI plugin as part of the extension. If you decide to go this route, I suggest you look at FireBreath, which is an abstraction that simplifies and solves most of the issues people run into with NPAPI plugins.

taxilian
  • 14,229
  • 4
  • 34
  • 73