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

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: make the plugin.dll empty so it loads everywhere 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..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}
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698