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

Unified Diff: chrome/common/extensions/docs/examples/howto/contentscript_xhr/manifest.json

Issue 7210049: Update contentscript xhr example to remove background page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebuilding docs Created 9 years, 5 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/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/*"],

Powered by Google App Engine
This is Rietveld 408576698