Files
chrome-extensions-samples/apps/samples/identity/manifest.json
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

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