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..982441479fc7d050223ef4d8087af1c9b8a14a7e 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 Cross-Domain XMLHttpRequest Example", |
+ "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/*"], |