gpt4 book ai didi

google-chrome - 如何让复选框 "Allow access to file URLs"显示在我的应用程序旁边?我在 list 中有文件写入权限

转载 作者:行者123 更新时间:2023-12-04 18:44:41 26 4
gpt4 key购买 nike

更多信息/更新

我打包并安装了谷歌自己的示例应用程序,显示了文件系统访问权限,它也是 不是 显示复选框!

你可以在这里找到它:https://github.com/GoogleChrome/chrome-app-samples/tree/master/filesystem-access

原帖

我有权限在我的 list 中请求 filesystem.write 能力,但在 chrome://extensions 上页面,复选框不显示。当我点击应用图标旁边的“权限”时,它只显示:

"Write to files that you have opened in the application"



我究竟做错了什么? (这是一个托管应用程序)

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"
]
}

最佳答案

要使其正常工作,您需要:

permissions: [ "<all_urls>" ]

或以 file:/// 开头的方案.

如果您尝试 *://*/*那将 不是 工作,因为它只代表 http 或 https

关于google-chrome - 如何让复选框 "Allow access to file URLs"显示在我的应用程序旁边?我在 list 中有文件写入权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17181181/

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