forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
25 lines (25 loc) · 764 Bytes
/
manifest.json
File metadata and controls
25 lines (25 loc) · 764 Bytes
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
{
"name": "Google Document List Viewer",
"version": "1.0.2",
"icons": {
"48": "img/docs_spreadsheets-48.gif",
"128": "img/docs_spreadsheets-128.gif"
},
"description": "Demonstrates how to use OAuth to connect the Google Documents List Data API.",
"background": {
"page": "background.html"
},
"options_page": "options.html",
"browser_action": {
"default_title": "List your Google Docs",
"default_icon": "img/docs_spreadsheets-32.gif",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"https://docs.google.com/feeds/*",
"https://www.google.com/accounts/OAuthGetRequestToken",
"https://www.google.com/accounts/OAuthAuthorizeToken",
"https://www.google.com/accounts/OAuthGetAccessToken"
]
}