- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / gdocs / manifest.json
1 {
2   "name": "Google Document List Viewer",
3   "version": "1.0.2",
4   "icons": {
5     "48": "img/docs_spreadsheets-48.gif",
6     "128": "img/docs_spreadsheets-128.gif"
7   },
8   "description": "Demonstrates how to use OAuth to connect the Google Documents List Data API.",
9   "background": {
10     "page": "background.html"
11   },
12   "options_page": "options.html",
13   "browser_action": {
14     "default_title": "List your Google Docs",
15     "default_icon": "img/docs_spreadsheets-32.gif",
16     "default_popup": "popup.html"
17   },
18   "permissions": [
19     "tabs",
20     "https://docs.google.com/feeds/*",
21     "https://www.google.com/accounts/OAuthGetRequestToken",
22     "https://www.google.com/accounts/OAuthAuthorizeToken",
23     "https://www.google.com/accounts/OAuthGetAccessToken"
24   ]
25 }