6

I'm doing some investigation into options for an app I am building. Do browser extensions for all browser platforms have filesystem access like Firefox does?

Travis Jensen
  • 5,362
  • 3
  • 36
  • 40

2 Answers2

1

Chrome extensions do not allow arbitrary filesystem access. You could, however, write an NPAPI plugin, but this comes with some heavy caveats:

You can also use HTML5 filesystem APIs to access a sandboxed filesystem:

Sudarshan
  • 18,140
  • 7
  • 53
  • 61
Boris Smus
  • 8,220
  • 2
  • 36
  • 33
0

Dolphin browser looks to have it. Look at their API (I didn't test it yet). Hopefully it will help you.

Marino Linaje
  • 582
  • 5
  • 8