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

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

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Cleaning up warnings Created 8 years, 10 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
OLDNEW
1 { 1 {
2 "name" : "Idle - Simple Example", 2 "name" : "Idle - Simple Example",
3 "version" : "1.0.0", 3 "version" : "1.0.1",
4 "description" : "Demonstrates the Idle API", 4 "description" : "Demonstrates the Idle API",
5 "background" : { 5 "background" : {
6 "scripts": ["background.js"] 6 "scripts": ["background.js"]
7 }, 7 },
8 "permissions" : [ "idle" ], 8 "permissions" : [ "idle" ],
9 "browser_action" : { 9 "browser_action" : {
10 "default_icon" : "sample-19.png" 10 "default_icon" : "sample-19.png"
11 }, 11 },
12 "icons" : { 12 "icons" : {
13 "16" : "sample-16.png", 13 "16" : "sample-16.png",
14 "48" : "sample-48.png", 14 "48" : "sample-48.png",
15 "128" : "sample-128.png" 15 "128" : "sample-128.png"
16 } 16 },
17 "manifest_version": 2
17 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698