| Index: chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json | 
| diff --git a/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0eef9ce93d0ab8d47ef19b4edecbe3e06c7357f0 | 
| --- /dev/null | 
| +++ b/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json | 
| @@ -0,0 +1,13 @@ | 
| +{ | 
| +  "name": "New Tab Page Injector", | 
| +  "version": "0.1", | 
| +  "manifest_version": 2, | 
| +  "description": "Injects in the NTP", | 
| +  "content_scripts": [{ | 
| +    "matches": ["*://*/*"], | 
| +    "js": ["script.js"], | 
| +    "run_at": "document_end" | 
| +  }], | 
| +  "background": {"scripts": ["background.js"]}, | 
| +  "permissions": ["tabs", "*://*/*"] | 
| +} | 
|  |