本文介绍了浏览器扩展中的本地文件系统访问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在调查我正在构建的应用程序的选项。所有浏览器平台的浏览器扩展是否具有像Firefox一样的文件系统访问权限?
但是,您可以编写一个插件,但这会带来一些严重的警告:您也可以使用HTML5 来访问沙盒文件系统:
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?
解决方案
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:
这篇关于浏览器扩展中的本地文件系统访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!