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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/experimental.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <h1 class="page_title">chrome.experimental.* APIs</h1> 1 <h1 class="page_title">chrome.experimental.* APIs</h1>
2 {{^is_apps}} 2 {{^is_apps}}
3 <div class="doc-family extensions"> 3 <div class="doc-family extensions">
4 <p> 4 <p>
5 Before you start, <strong>choose the right version of this page.</strong> 5 Before you start, <strong>choose the right version of this page.</strong>
6 You should read either: 6 You should read either:
7 </p> 7 </p>
8 8
9 <ul> 9 <ul>
10 <li> <a href="http://code.google.com/chrome/extensions/trunk/experimental.html ">Most recent experimental APIs</a> 10 <li> <a href="http://code.google.com/chrome/extensions/trunk/experimental.html ">Most recent experimental APIs</a>
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 </li> 81 </li>
82 <li class="doc-family extensions"> 82 <li class="doc-family extensions">
83 Using either the 83 Using either the
84 <a href="http://code.google.com/chrome/extensions/trunk/experimental.html">m ost recent API documentation</a> (if you're using Canary) or the 84 <a href="http://code.google.com/chrome/extensions/trunk/experimental.html">m ost recent API documentation</a> (if you're using Canary) or the
85 <a href="http://code.google.com/chrome/extensions/dev/experimental.html">API documentation for the Dev channel</a>, 85 <a href="http://code.google.com/chrome/extensions/dev/experimental.html">API documentation for the Dev channel</a>,
86 write the code for your extension. 86 write the code for your extension.
87 </li> 87 </li>
88 {{/is_apps}} 88 {{/is_apps}}
89 <li> 89 <li>
90 Specify the "experimental" 90 Specify the "experimental"
91 <a href="manifest.html#permissions">permission</a> 91 <a href="declare_permissions.html">permission</a>
92 in your manifest, like this: 92 in your manifest, like this:
93 <pre> 93 <pre>
94 "permissions": [ 94 "permissions": [
95 <b>"experimental"</b>, 95 <b>"experimental"</b>,
96 ... 96 ...
97 ], 97 ],
98 </pre> 98 </pre>
99 </li> 99 </li>
100 <li> 100 <li>
101 Enable the experimental API in your browser. 101 Enable the experimental API in your browser.
(...skipping 29 matching lines...) Expand all
131 {{/is_apps}} 131 {{/is_apps}}
132 </ol> 132 </ol>
133 133
134 <h2 id="other">More APIs</h2> 134 <h2 id="other">More APIs</h2>
135 135
136 <p> 136 <p>
137 For information on the standard APIs, see 137 For information on the standard APIs, see
138 <a href="api_index.html">chrome.* APIs</a> and 138 <a href="api_index.html">chrome.* APIs</a> and
139 <a href="api_other.html">Other APIs</a>. 139 <a href="api_other.html">Other APIs</a>.
140 </p> 140 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698