Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5995)

Unified Diff: chrome/test/data/extensions/api_test/cross_origin_xhr/all_urls/manifest.json

Issue 8138004: Fix issues related to <all_urls> in extensions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: . Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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}
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698