Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4179)

Unified Diff: chrome/common/extensions/docs/examples/tutorials/getstarted/manifest.json

Issue 732943002: New Getting started example for extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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/"
]
}

Powered by Google App Engine
This is Rietveld 408576698