mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-12 06:09:05 +07:00
20 lines
776 B
JSON
Executable File
20 lines
776 B
JSON
Executable File
{
|
|
"name": "Identity API Sample",
|
|
"version": "3.2",
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "29",
|
|
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCDJB6ZGcGxtlr/34s+TKgi84QiP7DMekqOjSUS2ubmbhchlM6CN9gYdGQ1aBI3TBXG3YaAu+XyutFA8M8NLLWc4OOGByWaGV11DP6p67g8a+Ids/gX6cNSRnRHiDZXAd44ATxoN4OZjZJk9iQ26RIUjwX07bzntlI+frwwKCk4WQIDAQAB",
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"permissions": ["identity", "https://accounts.google.com/*", "https://www.googleapis.com/*"],
|
|
"oauth2": {
|
|
// client_id below is specific to the application key. Follow the
|
|
// documentation to obtain one for your app.
|
|
"client_id": "497291774654.apps.googleusercontent.com",
|
|
"scopes": ["https://www.googleapis.com/auth/userinfo.profile"]
|
|
}
|
|
}
|