【发布时间】:2014-02-24 03:28:55
【问题描述】:
最近我发现我无法获取打包应用程序的 OAuth 令牌。于是提出了一个问题:是否可以使用 Chrome Web Store Payments?
{
"manifest_version": 2,
"name": "Animation Editor",
"version": "0.139.3",
"description": "animation editor",
"icons": {"128": "logo.png" },
"app": {
"background": {
"scripts": ["start.js"],
"persistent": false
}
},
"permissions": [
"identity",
"https://www.googleapis.com/"
],
"oauth2": {
"client_id": "361228830972.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/chromewebstore.readonly"
]
},
"short_name": "aEditor"
}
【问题讨论】:
标签: google-chrome google-chrome-extension oauth google-chrome-devtools google-chrome-app