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

Side by Side Diff: chrome/test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json

Issue 7071025: Use WebFrame::setIsolatedWorldSecurityOrigin to allow cross-origin XHRs in content scripts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switch to whitelisting effective permissions. Created 9 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "cross origin xhr tests", 2 "name": "cross origin xhr tests",
3 "version": "0.1", 3 "version": "0.1",
4 "description": "Sanity check that cross-origin XHR works for extensions. The m ajority of this is implemented (and tested) in WebKit, but we have a sanity test here just to make sure the integration with Chromium keeps working.", 4 "description": "Sanity check that cross-origin XHR works for extension content scripts.",
5 "background_page": "test.html", 5 "background_page": "test.html",
6 "content_scripts": [ {
7 "js": [ "content_script.js" ],
8 "matches": [ "<all_urls>" ]
Matt Perry 2011/05/27 20:55:28 I think you need to change this to localhost only.
9 } ],
6 "permissions": ["http://a.com/", "http://*.b.com/"] 10 "permissions": ["http://a.com/", "http://*.b.com/"]
7 } 11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698