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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/settings_override.html

Issue 691283003: Write docs for options_ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@inline-type
Patch Set: fixes Created 6 years, 1 month 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 <h1>Settings Overrides</h1> 1 <h1>Settings Overrides</h1>
2 2
3 <p> 3 <p>
4 Settings overrides are a way for extensions to override selected Chrome settings . 4 Settings overrides are a way for extensions to override selected Chrome settings .
5 </p> 5 </p>
6 6
7 <h2 id="others">Homepage, Search Provider, and Startup Pages</h2> 7 <h2 id="others">Homepage, Search Provider, and Startup Pages</h2>
8 <p> 8 <p>
9 Here is an example how <a href="#homepage">homepage</a>, <a 9 Here is an example how <a href="#homepage">homepage</a>, <a
10 href="#search_provider">search provider</a> and <a href="#startup_pages">startup 10 href="#search_provider">search provider</a> and <a href="#startup_pages">startup
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 absent, occurrences of "__PARAM__" are removed. Note that "__PARAM__" cannot 70 absent, occurrences of "__PARAM__" are removed. Note that "__PARAM__" cannot
71 be part of the hostname. It needs to occur after the first '/' in the URL. 71 be part of the hostname. It needs to occur after the first '/' in the URL.
72 </li> 72 </li>
73 </ul> 73 </ul>
74 74
75 <h2 id="reference">Reference</h2> 75 <h2 id="reference">Reference</h2>
76 <p> 76 <p>
77 An extension can override one or more of the following properties in the 77 An extension can override one or more of the following properties in the
78 manifest: 78 manifest:
79 </p> 79 </p>
80 80 {{+partials.manifest_type
81 <ul> 81 type:apis.extensions.manifestTypes.byName.ChromeSettingsOverrides /}}
82 {{#f:apis.extensions.manifestTypes.byName.ChromeSettingsOverrides.properties}}
83 <li>
84 <p id="{{f.name}}"><b><code>{{f.name}}</code> ({{+partials.variable_type type: f/}})</b></p>
85 <p>{{f.description}}</p>
86 {{?f.properties}}
87 <table>
88 <tr><th>Type</th><th>Attribute</th><th>Description</th></tr>
89 {{+partials.type_item
90 title:f.strings.properties
91 display_name:display_name
92 items:f.properties
93 item_partial:(partials.parameter_full hideParamTOC:true)/}}
94 </table>
95 {{/}}
96 {{/}}
97 </ul>
98
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698