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

Unified Diff: chrome/common/extensions/docs/templates/articles/content_scripts.html

Issue 12223068: Fix some typos, broken links and other issues in extension docs (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/templates/articles/content_scripts.html
===================================================================
--- chrome/common/extensions/docs/templates/articles/content_scripts.html (revision 181647)
+++ chrome/common/extensions/docs/templates/articles/content_scripts.html (working copy)
@@ -82,7 +82,7 @@
<p>
If you want to inject the code only sometimes,
use the
-<a href="manifest.html#permissions"><code>permissions</code></a> field instead,
+<a href="declare_permissions.html"><code>permissions</code></a> field instead,
as described in <a href="#pi">Programmatic injection</a>.
</p>
@@ -246,7 +246,7 @@
It also must be able to use the <code>chrome.tabs</code> module.
You can get both kinds of permission
using the manifest file's
-<a href="manifest.html#permissions">permissions</a> field.
+<a href="declare_permissions.html">permissions</a> field.
</p>
<p>
@@ -367,7 +367,7 @@
First, be careful not to introduce security vulnerabilities into the web site
your content script is injected into. For example, if your content script
receives content from another web site (for example, by making an <a
-href="messaging.html">XMLHttpRequest</a>),
+href="xhr.html">XMLHttpRequest</a>),
be careful to filter that content for <a
href="http://en.wikipedia.org/wiki/Cross-site_scripting">cross-site
scripting</a> attacks before injecting the content into the current page.

Powered by Google App Engine
This is Rietveld 408576698