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

Side by Side Diff: chrome/common/extensions/docs/templates/intros/cookies.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 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
2 2
3 <p>To use the cookies API, 3 <p>To use the cookies API,
4 you must declare the "cookies" permission in your manifest, 4 you must declare the "cookies" permission in your manifest,
5 along with <a href="manifest.html#permissions">host permissions</a> 5 along with <a href="declare_permissions.html">host permissions</a>
6 for any hosts whose cookies 6 for any hosts whose cookies
7 you want to access. 7 you want to access.
8 For example:</p> 8 For example:</p>
9 9
10 <pre>{ 10 <pre>{
11 "name": "My extension", 11 "name": "My extension",
12 ... 12 ...
13 <b>"permissions": [ 13 <b>"permissions": [
14 "cookies", 14 "cookies",
15 "*://*.google.com" 15 "*://*.google.com"
16 ]</b>, 16 ]</b>,
17 ... 17 ...
18 }</pre> 18 }</pre>
19 19
20 <h2 id="examples"> Examples </h2> 20 <h2 id="examples"> Examples </h2>
21 21
22 <p> 22 <p>
23 You can find a simple example 23 You can find a simple example
24 of using the cookies API in the 24 of using the cookies API in the
25 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extension s/docs/examples/api/cookies/">examples/api/cookies</a> 25 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extension s/docs/examples/api/cookies/">examples/api/cookies</a>
26 directory. 26 directory.
27 For other examples 27 For other examples
28 and for help in viewing the source code, 28 and for help in viewing the source code,
29 see <a href="samples.html">Samples</a>. 29 see <a href="samples.html">Samples</a>.
30 </p> 30 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698