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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fontSettings/manifest.json

Issue 10834241: Change Font Settings Sample Extension to use an options page instead of browser action. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Font Settings", 2 "name": "Font Settings",
3 "version": "0.2", 3 "version": "0.2",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Sample extension for Font Settings API", 5 "description": "Sample extension for Font Settings API",
6 "browser_action" : { 6 "options_page": "options.html",
7 "default_icon": "fonts16.png",
8 "default_popup": "popup.html"
9 },
10 "icons": { 7 "icons": {
11 "16": "fonts16.png", 8 "16": "fonts16.png",
12 "128": "fonts128.png" 9 "128": "fonts128.png"
13 }, 10 },
14 "permissions": ["fontSettings"] 11 "permissions": ["fontSettings"]
15 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698