| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Page Benchmarker", | 2 "name": "Page Benchmarker", |
| 3 "version": "1.3.3.0", | 3 "version": "1.3.4.0", |
| 4 "manifest_version": 2, |
| 5 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'
", |
| 4 "description": "Chromium Page Benchmarker.", | 6 "description": "Chromium Page Benchmarker.", |
| 5 "background": { | 7 "background": { |
| 6 "page": "background.html" | 8 "page": "background.html", |
| 9 "persistent": false |
| 7 }, | 10 }, |
| 8 "browser_action": { | 11 "browser_action": { |
| 9 "default_title": "Benchmark page load time", | 12 "default_title": "Benchmark page load time", |
| 10 "default_icon": "stopwatch.jpg" | 13 "default_icon": "stopwatch.jpg" |
| 11 }, | 14 }, |
| 12 "options_page": "options.html", | 15 "options_page": "options.html", |
| 13 "permissions": [ | 16 "permissions": [ |
| 14 "tabs", "https://*/*", "http://*/*" | 17 "tabs", "https://*/*", "http://*/*" |
| 15 ] | 18 ] |
| 16 } | 19 } |
| OLD | NEW |