| OLD | NEW |
| 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 |
| OLD | NEW |