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

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

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 <h1>User Interface Overrides</h1> 1 <h1>User Interface Overrides</h1>
2 2
3 <p> 3 <p>
4 User interface overrides are a way for extensions to override selected Chrome 4 User interface overrides are a way for extensions to override selected Chrome
5 user interface properties. 5 user interface properties.
6 </p> 6 </p>
7 7
8 <h2 id="bookmarks">Bookmarks User Interface</h2> 8 <h2 id="bookmarks">Bookmarks User Interface</h2>
9 <p> 9 <p>
10 Register the user interface properties you want to override in the 10 Register the user interface properties you want to override in the
11 <a href="manifest.html">extension manifest</a> like this: 11 <a href="manifest">extension manifest</a> like this:
12 </p> 12 </p>
13 13
14 <pre>{ 14 <pre>{
15 "name": "My extension", 15 "name": "My extension",
16 ... 16 ...
17 <b> 17 <b>
18 "chrome_ui_overrides" : { 18 "chrome_ui_overrides" : {
19 "bookmarks_ui": { 19 "bookmarks_ui": {
20 "remove_button": "true", 20 "remove_button": "true",
21 "remove_bookmark_shortcut": "true" 21 "remove_bookmark_shortcut": "true"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <tr><th>Type</th><th>Attribute</th><th>Description</th></tr> 65 <tr><th>Type</th><th>Attribute</th><th>Description</th></tr>
66 {{+partials.type_item 66 {{+partials.type_item
67 title:f.strings.properties 67 title:f.strings.properties
68 display_name:display_name 68 display_name:display_name
69 items:f.properties 69 items:f.properties
70 item_partial:(partials.parameter_full hideParamTOC:true)/}} 70 item_partial:(partials.parameter_full hideParamTOC:true)/}}
71 </table> 71 </table>
72 {{/}} 72 {{/}}
73 {{/}} 73 {{/}}
74 </ul> 74 </ul>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698