| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Message Timer", | 2 "name": "Message Timer", |
| 3 "version": "1.0", | 3 "version": "1.2", |
| 4 "description": "Times how long it takes to send a message to a content script
and back.", | 4 "description": "Times how long it takes to send a message to a content script
and back.", |
| 5 "permissions": ["tabs"], | 5 "permissions": ["tabs"], |
| 6 "content_scripts": [ | 6 "content_scripts": [ |
| 7 { | 7 { |
| 8 "matches": ["http://*/*"], | 8 "matches": ["http://*/*"], |
| 9 "js": ["page.js"] | 9 "js": ["page.js"] |
| 10 } | 10 } |
| 11 ], | 11 ], |
| 12 "browser_action": { | 12 "browser_action": { |
| 13 "default_title": "Time to current page", | 13 "default_title": "Time to current page", |
| 14 "default_icon": "clock.png", | 14 "default_icon": "clock.png", |
| 15 "default_popup": "popup.html" | 15 "default_popup": "popup.html" |
| 16 } | 16 }, |
| 17 "manifest_version": 2 |
| 17 } | 18 } |
| OLD | NEW |