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

Side by Side Diff: chrome/common/extensions/docs/templates/intros/topSites.html

Issue 1124343004: docs: Fix some broken links to samples where the #hash-word is supposed to be a search term. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change TODO owners Created 5 years, 7 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
OLDNEW
1 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
2 2
3 <p> 3 <p>
4 You must declare the "topSites" permission in your extension's manifest 4 You must declare the "topSites" permission in your extension's manifest
5 to use this API. 5 to use this API.
6 </p> 6 </p>
7 7
8 <pre data-filename="manifest.json"> 8 <pre data-filename="manifest.json">
9 { 9 {
10 "name": "My extension", 10 "name": "My extension",
11 ... 11 ...
12 <b> "permissions": [ 12 <b> "permissions": [
13 "topSites", 13 "topSites",
14 ]</b>, 14 ]</b>,
15 ... 15 ...
16 } 16 }
17 </pre> 17 </pre>
18 18
19 19
20 <h2 id="examples">Examples</h2> 20 <h2 id="examples">Examples</h2>
21 21
22 <p> 22 <p>
23 You can find samples of this API in 23 You can find samples of this API in
24 <a href="samples#topsites">Samples</a>. 24 <a href="samples#search:topsites">Samples</a>.
25 </p> 25 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698