-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
28 lines (28 loc) · 854 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "Sample - OAuth Test",
"version": "1.0.0",
"icons": { "48": "img/icon-48.png",
"128": "img/icon-128.png" },
"description": "Uses OAuth to connect to Google's User Info service and display User Information.",
"background": {
"scripts": [
"chrome_ex_oauthsimple.js",
"chrome_ex_oauth.js",
"background.js"
]
},
"browser_action": {
"default_title": "",
"default_icon": "img/icon-19-off.png"
},
"permissions": [
"tabs",
"unlimitedStorage",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/oauth2/v2/userinfo",
"https://www.google.com/accounts/OAuthGetRequestToken",
"https://www.google.com/accounts/OAuthAuthorizeToken",
"https://www.google.com/accounts/OAuthGetAccessToken"
]
}