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

Side by Side 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: review comments #21 Created 5 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "manifest_version": 2, 2 "manifest_version": 2,
3 3
4 "name": "One-click Kittens", 4 "name": "Getting started example",
5 "description": "This extension demonstrates a 'browser action' with kittens.", 5 "description": "This extension shows a Google Image search result for the curr ent page",
6 "version": "1.0", 6 "version": "1.0",
7 7
8 "browser_action": { 8 "browser_action": {
9 "default_icon": "icon.png", 9 "default_icon": "icon.png",
10 "default_popup": "popup.html" 10 "default_popup": "popup.html"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "https://secure.flickr.com/" 13 "activeTab",
14 "https://ajax.googleapis.com/"
14 ] 15 ]
15 } 16 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/tutorials/getstarted/popup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698