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

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

Issue 398823002: Sample Extension for Tabs Zoom API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add license headers. Created 6 years, 5 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
(Empty)
1 {
2 "manifest_version": 2,
3
4 "name": "Tabs Zoom API Demo",
5 "description": "This extension allows the user to explore features of the new tabs zoom api.",
6
7 "version": "0.1",
8
9 "icons": {
10 "16": "zoom16.png",
11 "48": "zoom48.png"
12 },
13
14 "background": {
15 "scripts": ["background.js"],
16 "persistent": false
17 },
18
19 "browser_action": {
20 "default_icon": "zoom19.png",
21 "default_title": "Zoom Extension Demo",
22 "default_popup": "popup.html"
23 }
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698