| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "A page action which removes a popup.", | 2 "name": "A page action which removes a popup.", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "manifest_version": 2, |
| 4 "background_page": "background.html", | 5 "background_page": "background.html", |
| 5 "permissions": [ | 6 "permissions": [ |
| 6 "tabs", "http://*/*" | 7 "tabs", "http://*/*" |
| 7 ], | 8 ], |
| 8 "page_action": { | 9 "page_action": { |
| 9 "default_title": "Popup Title", | 10 "default_title": "Popup Title", |
| 10 "default_icon": "icon.png", | 11 "default_icon": "icon.png", |
| 11 "default_popup": "a_popup.html" | 12 "default_popup": "a_popup.html" |
| 12 } | 13 } |
| 13 } | 14 } |
| OLD | NEW |