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

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: Update tutorial 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..4c9192c575e3d5c10e70ad505a52340f9d27d2fd 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 a Google Image search result for the current page",
"version": "1.0",
"browser_action": {
@@ -10,6 +10,7 @@
"default_popup": "popup.html"
},
"permissions": [
- "https://secure.flickr.com/"
+ "activeTab",
+ "https://ajax.googleapis.com/"
]
}

Powered by Google App Engine
This is Rietveld 408576698