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

Side by Side Diff: chrome/common/extensions/docs/templates/intros/contentSettings.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 <p>You must declare the "contentSettings" permission 2 <p>You must declare the "contentSettings" permission
3 in your extension's manifest to use the API. 3 in your extension's manifest to use the API.
4 For example:</p> 4 For example:</p>
5 <pre data-filename="manifest.json"> 5 <pre data-filename="manifest.json">
6 { 6 {
7 "name": "My extension", 7 "name": "My extension",
8 ... 8 ...
9 <b>"permissions": [ 9 <b>"permissions": [
10 "contentSettings" 10 "contentSettings"
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 You can get a list of resource identifiers for a content type by calling the 130 You can get a list of resource identifiers for a content type by calling the
131 $(ref:contentSettings.ContentSetting.getResourceIdentifiers) method. The returne d list 131 $(ref:contentSettings.ContentSetting.getResourceIdentifiers) method. The returne d list
132 can change with the set of installed plugins on the user's machine, but Chrome 132 can change with the set of installed plugins on the user's machine, but Chrome
133 tries to keep the identifiers stable across plugin updates. 133 tries to keep the identifiers stable across plugin updates.
134 </p> 134 </p>
135 135
136 <h2 id="examples">Examples</h2> 136 <h2 id="examples">Examples</h2>
137 137
138 <p> 138 <p>
139 You can find samples of this API on the 139 You can find samples of this API on the
140 <a href="samples#contentSettings">sample page</a>. 140 <a href="samples#search:contentSettings">sample page</a>.
141 </p> 141 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698