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

Side by Side Diff: chrome/common/extensions/docs/options.html

Issue 465039: Extension Doc Changes (no building or testable changes) (Closed)
Patch Set: Created 11 years 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
« no previous file with comments | « chrome/common/extensions/docs/npapi.html ('k') | chrome/common/extensions/docs/override.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 <li><a href="api_index.html">chrome.* APIs</a></li> 182 <li><a href="api_index.html">chrome.* APIs</a></li>
183 <li><a href="api_other.html">Other APIs</a></li> 183 <li><a href="api_other.html">Other APIs</a></li>
184 </ul> 184 </ul>
185 </li> 185 </li>
186 <li><h2><a href="samples.html">Samples</a></h2></li> 186 <li><h2><a href="samples.html">Samples</a></h2></li>
187 </ul> 187 </ul>
188 </div> 188 </div>
189 189
190 <div class="g-unit" id="gc-pagecontent"> 190 <div class="g-unit" id="gc-pagecontent">
191 <div id="pageTitle"> 191 <div id="pageTitle">
192 <h1 class="page_title">Options - Google Chrome Extensions - Google Code< /h1> 192 <h1 class="page_title">Options</h1>
193 </div> 193 </div>
194 <!-- TABLE OF CONTENTS --> 194 <!-- TABLE OF CONTENTS -->
195 <div id="toc"> 195 <div id="toc">
196 <h2>Contents</h2> 196 <h2>Contents</h2>
197 <ol> 197 <ol>
198 <li> 198 <li>
199 <a href="#H2-0">Step 1: Declare your options page in the manifest< /a> 199 <a href="#H2-0">Step 1: Declare your options page in the manifest< /a>
200 <ol> 200 <ol>
201 <li style="display: none; "> 201 <li style="display: none; ">
202 <a>h3Name</a> 202 <a>h3Name</a>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 </ol> 254 </ol>
255 </li> 255 </li>
256 </ol> 256 </ol>
257 </li> 257 </li>
258 </div> 258 </div>
259 </ol> 259 </ol>
260 </div> 260 </div>
261 <!-- /TABLE OF CONTENTS --> 261 <!-- /TABLE OF CONTENTS -->
262 262
263 <!-- STATIC CONTENT PLACEHOLDER --> 263 <!-- STATIC CONTENT PLACEHOLDER -->
264 <div id="static"><div id="pageData-title" class="pageData">Options</div> 264 <div id="static"><div id="pageData-name class=" pagedata"="">Options</di v>
265 <div id="pageData-showTOC" class="pageData">true</div> 265 <div id="pageData-showTOC" class="pageData">true</div>
266 <p>To allow users to customize the behavior of your extension, you may wish to p rovide an options page. If you do, a link to it will be provided from the extens ions management page at chrome://extensions. Clicking the Options link opens a n ew tab pointing at your options page. 266 <p>To allow users to customize the behavior of your extension, you may wish to p rovide an options page. If you do, a link to it will be provided from the extens ions management page at chrome://extensions. Clicking the Options link opens a n ew tab pointing at your options page.
267 267
268 </p><a name="H2-0"></a><h2>Step 1: Declare your options page in the manifest</h2 > 268 </p><a name="H2-0"></a><h2>Step 1: Declare your options page in the manifest</h2 >
269 269
270 <pre>{ 270 <pre>{
271 "name": "Test Extension", 271 "name": "Test Extension",
272 "version": "1.0", 272 "version": "1.0",
273 "description": "This is a test", 273 "description": "This is a test",
274 <b>"options_page": "options.html"</b> 274 <b>"options_page": "options.html"</b>
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 urchinTracker(); 519 urchinTracker();
520 } 520 }
521 catch(e) {/* urchinTracker not available. */} 521 catch(e) {/* urchinTracker not available. */}
522 </script> 522 </script>
523 <!-- end analytics --> 523 <!-- end analytics -->
524 </div> 524 </div>
525 </div> <!-- /gc-footer --> 525 </div> <!-- /gc-footer -->
526 </div> <!-- /gc-container --> 526 </div> <!-- /gc-container -->
527 </body></html> 527 </body></html>
528 528
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/npapi.html ('k') | chrome/common/extensions/docs/override.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698