我打包并安装了谷歌自己的示例应用程序,显示文件系统访问权限,并且不显示复选框!
您可以在此处找到它:https://github.com/GoogleChrome/chrome-app-samples/tree/master/filesystem-access
原帖
我有权在我的清单中询问filesystem.write能力,但在chrome://extensions
页面上,复选框没有显示。当我点击我的应用程序图标旁边的“权限”时,它只会显示:
“写入您在应用程序中打开的文件”
我做错了什么? (这是一个托管应用程序)
的manifest.json
{
"manifest_version": 2,
"name": "Hello World",
"description": "A test application",
"version": "2.0.3.92",
"minimum_chrome_version": "23",
"offline_enabled": true,
"update_url": "http://mywebsite.com/updates/helloworld.xml",
"icons":
{
"16": "icon_16.png",
"128": "icon_128.png"
},
"app":
{
"background":
{
"scripts":
[
"utils.js",
"fs.js",
"main.js"
]
}
},
"permissions":
[
"unlimitedStorage",
"fullscreen",
{
"fileSystem":
[
"write"
]
},
"background",
"http://*/",
"tabs"
]
}
答案 0 :(得分:5)
要实现这一点,您需要:
permissions: [ "<all_urls>" ]
或以file:///
开头的方案。
如果您尝试 工作的*://*/*
,因为它只代表http或https