Chromium Code Reviews| Index: chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json |
| diff --git a/chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json b/chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json |
| index 6aee5ea97b028a72b5835be57909e6b4e1969fb8..a73de0994fe296e03268f92eb81b60f053e31c32 100644 |
| --- a/chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json |
| +++ b/chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json |
| @@ -1,15 +1,14 @@ |
| { |
| - "name": "Cross-domain XMLHttpRequest from a content script", |
| - "version": "1.0.0", |
| - "description": "Demonstrates a method to make a cross-domain XMLHttpRequest fetch from a content script. This extension fetches the current trending topics from Twitter and inserts them in an overlay at the top of Google News. Visit http://news.google.com to test this extension.", |
| + "name": "Content Script Crossdomain XMLHttpRequest Example", |
|
kathyw
2011/07/01 00:30:14
Crossdomain -> Cross-Domain
|
| + "version": "2.0.0", |
| + "description": "Demonstrates making cross domain requests from a content script by putting Twitter trends on Google News.", |
| "permissions": [ |
| - "http://api.twitter.com/*" |
| + "https://api.twitter.com/*" |
| ], |
| "icons": { |
| "48" : "sample-48.png", |
| "128" : "sample-128.png" |
| }, |
| - "background_page" : "background.html", |
| "content_scripts": [ |
| { |
| "matches": ["http://news.google.com/*"], |