gpt4 book ai didi

google-chrome-app - 尝试使用 chrome.fileSystem chooseEntry 时出现权限错误

转载 作者:行者123 更新时间:2023-12-02 05:07:09 25 4
gpt4 key购买 nike

尝试使用时

chrome.fileSystem.chooseEntry({
type: 'openFile'
},chooseEntryCallback)`

Canary 28.0.1483.0 上,我在控制台中收到以下错误:

chrome.fileSystem is not available: You do not have permission to access this API. Ensure that the required permission or manifest property is included in your manifest.json.

我只需要访问权限, list 文件中的权限选项如下所示:

"permissions": [
{
"fileSystem": []
},
"contextMenus",
"clipboardWrite",
"storage"
],

这适用于 Stable 26.0.1410.64 所以问题是是否有一些需要更新的明显权限更改。

注意:在 Windows 8 上运行的 Chrome,当通过拖放打开文件时,它打开时没有错误。所以我猜 chooseEntry 有问题吗?

最佳答案

根据@sowbug 的评论,我通过更改列表项的 fileSystem 权限解决了这个问题:

"permissions": [
"fileSystem"
],

编辑:要包含扩展的 write 权限:

"permissions": [
"fileSystem",
"fileSystem.write"
],

关于google-chrome-app - 尝试使用 chrome.fileSystem chooseEntry 时出现权限错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16114752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com