| Index: chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json
|
| diff --git a/chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json b/chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json
|
| index 9496acae179c0a56dd574aa3afb351e932b53926..ffbe40bfe1247c73d07056fe2d66d97476761e46 100644
|
| --- a/chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json
|
| +++ b/chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json
|
| @@ -1,8 +1,8 @@
|
| {
|
| "manifest_version": 2,
|
|
|
| - "name": "One-click Kittens",
|
| - "description": "This extension demonstrates a 'browser action' with kittens.",
|
| + "name": "Getting started example",
|
| + "description": "This extension shows the first image search result in Google for the current page's URL.",
|
| "version": "1.0",
|
|
|
| "browser_action": {
|
| @@ -10,6 +10,7 @@
|
| "default_popup": "popup.html"
|
| },
|
| "permissions": [
|
| - "https://secure.flickr.com/"
|
| + "tabs",
|
| + "https://ajax.googleapis.com/"
|
| ]
|
| }
|
|
|