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

Unified Diff: chrome/common/extensions/docs/templates/intros/downloads.html

Issue 23611006: Fix incorrect manifest JSON in the chrome.downloads intro. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/templates/intros/downloads.html
diff --git a/chrome/common/extensions/docs/templates/intros/downloads.html b/chrome/common/extensions/docs/templates/intros/downloads.html
index 84582dd734e3bbb9855f2ad096b6889fa964b38d..9a52ba02349bb6a0682ae00c35d0b9658c6ca1db 100644
--- a/chrome/common/extensions/docs/templates/intros/downloads.html
+++ b/chrome/common/extensions/docs/templates/intros/downloads.html
@@ -1,18 +1,20 @@
<h2 id='manifest'>Manifest</h2>
-<p> You must declare the 'downloads' permission in the <a
+<p> You must declare the <code>"downloads"</code> permission in the <a
href='manifest.html'>extension manifest</a> to use this API.</p>
<pre>{
- 'name': 'My extension',
+ "name": "My extension",
...
-<b> 'permissions': ['downloads']</b>,
+ <b>"permissions": [
+ "downloads"
+ ]</b>,
...
}</pre>
<h2 id='examples'>Examples</h2>
-<p>You can find simple examples of using the downloads module in the <a
+<p>You can find simple examples of using the <code>chrome.downloads</code> API in the <a
href='http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/downloads/'>examples/api/downloads</a>
directory. For other examples and for help in viewing the source code, see <a
href='samples.html'>Samples</a>.</p>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698