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

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

Issue 12223068: Fix some typos, broken links and other issues in extension docs (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <h1>Packaging</h1> 1 <h1>Packaging</h1>
2 2
3 3
4 <p> 4 <p>
5 This page describes how to package your extension. 5 This page describes how to package your extension.
6 As the <a href="overview.html">Overview</a> explains, 6 As the <a href="overview.html">Overview</a> explains,
7 extensions are packaged as signed ZIP files 7 extensions are packaged as signed ZIP files
8 with the file extension "crx"&mdash;for example, 8 with the file extension "crx"&mdash;for example,
9 <code>myextension.crx</code>. 9 <code>myextension.crx</code>.
10 </p> 10 </p>
(...skipping 28 matching lines...) Expand all
39 <ol> 39 <ol>
40 <li> 40 <li>
41 Bring up the Extensions management page 41 Bring up the Extensions management page
42 by going to this URL: 42 by going to this URL:
43 <blockquote> 43 <blockquote>
44 <b>chrome://extensions</b> 44 <b>chrome://extensions</b>
45 </blockquote> 45 </blockquote>
46 </li> 46 </li>
47 47
48 <li> 48 <li>
49 If <b>Developer mode</b> has a + by it, 49 Ensure that the "Developer mode" checkbox in the top right-hand corner
50 click the +. 50 is checked.
51 </li> 51 </li>
52 52
53 <li> 53 <li>
54 Click the <b>Pack extension</b> button. 54 Click the <b>Pack extension</b> button.
55 A dialog appears. 55 A dialog appears.
56 </li> 56 </li>
57 57
58 <li> 58 <li>
59 In the <b>Extension root directory</b> field, 59 In the <b>Extension root directory</b> field,
60 specify the path to the extension's folder&mdash;for example, 60 specify the path to the extension's folder&mdash;for example,
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 <pre> 182 <pre>
183 chrome.exe --pack-extension=c:\myext --pack-extension-key=c:\myext.pem 183 chrome.exe --pack-extension=c:\myext --pack-extension-key=c:\myext.pem
184 </pre> 184 </pre>
185 185
186 <h2 id="format">Package format and scripts</h2> 186 <h2 id="format">Package format and scripts</h2>
187 <p> 187 <p>
188 For more information on the format, as well as pointers to scripts you can use 188 For more information on the format, as well as pointers to scripts you can use
189 to create <code>.crx</code> files, see <a href="crx.html">CRX Package Format</a> . 189 to create <code>.crx</code> files, see <a href="crx.html">CRX Package Format</a> .
190 </p> 190 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698