Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 } |
| OLD | NEW |