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..eaf5663a4b70e21d9c22b6d42ef211eb9a30fe99 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json |
@@ -0,0 +1,17 @@ |
+{ |
+ "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}, |
Matt Perry
2011/10/10 23:22:39
nit: you can just leave 1 plugin in the list here
jstritar
2011/10/11 15:13:38
Done.
|
+ {"path": "plugin32.so", "public": true}, |
+ {"path": "plugin64.so", "public": true} |
+ ] |
+} |