我正在为Chrome编写一个简单的扩展程序。
用户可以选择设置个人资料名称
如何在扩展程序中获取该名称“lan”?
这是一个非常简单的扩展
的manifest.json
{
"manifest_version": 2,
"name": .."description"...
...
"background": {
"scripts": ["background.js"]
},
...
}
background.js
// how to get the profile name here?
// chrome.what.user.profile.name??
答案 0 :(得分:2)
有趣的问题,但我担心答案是目前没有API可以访问该信息。