| Index: chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json
|
| diff --git a/chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json b/chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..72717eb85fa86801d4aa7aea1822d0ff5fd8e999
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json
|
| @@ -0,0 +1,15 @@
|
| +{
|
| + "name": "Cross origin XHR with plugin.",
|
| + "version": "1.0",
|
| + "description": "Tests bug #98418",
|
| + "background_page": "test.html",
|
| + "content_scripts": [{
|
| + "matches": ["<all_urls>"],
|
| + "js": ["content_script.js"],
|
| + "run_at": "document_start"
|
| + }],
|
| + "permissions": [ "<all_urls>" ],
|
| + "plugins": [
|
| + {"path": "plugin.dll", "public": true}
|
| + ]
|
| +}
|
|
|