| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Stegosaurus!", | 2 "name": "Stegosaurus!", |
| 3 "description": "Warn the user when a stegosaurus might be present.", | 3 "description": "Warn the user when a stegosaurus might be present.", |
| 4 "version": "1", | 4 "version": "1", |
| 5 "manifest_version": 2, | 5 "manifest_version": 2, |
| 6 "permissions": ["tabs", "experimental"], | 6 "permissions": ["tabs", "experimental"], |
| 7 "background": { | 7 "background": { |
| 8 "scripts": ["background.js"], | 8 "scripts": ["background.js"], |
| 9 "persistent": false | 9 "transient": true |
| 10 }, | 10 }, |
| 11 "icons": {"48": "icon48.png"}, | 11 "icons": {"48": "icon48.png"}, |
| 12 "page_action": { | 12 "page_action": { |
| 13 "default_icon": "icon19.png", | 13 "default_icon": "icon19.png", |
| 14 "default_title": "Lookout for the stegosaurus!" | 14 "default_title": "Lookout for the stegosaurus!" |
| 15 } | 15 } |
| 16 } | 16 } |
| OLD | NEW |