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

Side by Side Diff: chrome/common/extensions/docs/examples/api/debugger/live-headers/manifest.json

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding zip files after rebasing with master 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": "Live HTTP headers", 2 "name": "Live HTTP headers",
3 "description": "Displays the live log with the http requests headers", 3 "description": "Displays the live log with the http requests headers",
4 "version": "0.5", 4 "version": "0.6",
5 "permissions": [ 5 "permissions": [
6 "tabs", 6 "tabs",
7 "debugger" 7 "debugger"
8 ], 8 ],
9 "background": { 9 "background": {
10 "scripts": ["background.js"] 10 "scripts": ["background.js"]
11 }, 11 },
12 "browser_action": { 12 "browser_action": {
13 "default_icon": "icon.png", 13 "default_icon": "icon.png",
14 "default_title": "Live HTTP headers" 14 "default_title": "Live HTTP headers"
15 } 15 },
16 "manifest_version": 2
16 } 17 }
17 18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698