| Index: chrome/test/data/extensions/api_test/messaging/on_unload/manifest.json | 
| diff --git a/chrome/test/data/extensions/api_test/messaging/on_unload/manifest.json b/chrome/test/data/extensions/api_test/messaging/on_unload/manifest.json | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..9b665d5083b003287c7dd823127afe3faf94c4d9 | 
| --- /dev/null | 
| +++ b/chrome/test/data/extensions/api_test/messaging/on_unload/manifest.json | 
| @@ -0,0 +1,14 @@ | 
| +{ | 
| +  "name": "send message on unload", | 
| +  "version": "1.0", | 
| +  "manifest_version": 2, | 
| +  "description": "Sends a message on tab unload", | 
| +  "background": { | 
| +    "persistent": true, | 
| +    "scripts": ["test.js"] | 
| +  }, | 
| +  "content_scripts": [{ | 
| +    "matches": ["*://*/*"], | 
| +    "js": ["content_script.js"] | 
| +  }] | 
| +} | 
|  |