| Index: chrome/common/extensions/docs/templates/articles/crx.html
|
| diff --git a/chrome/common/extensions/docs/templates/articles/crx.html b/chrome/common/extensions/docs/templates/articles/crx.html
|
| index b761b859f0201398d76b2cf43ec5730749576470..6d0683ee9451bfe10182c9ee27b99aa4f917b4c5 100644
|
| --- a/chrome/common/extensions/docs/templates/articles/crx.html
|
| +++ b/chrome/common/extensions/docs/templates/articles/crx.html
|
| @@ -6,7 +6,7 @@ CRX files are ZIP files with a special header and the <code>.crx</code> file
|
| extension.
|
| </p>
|
|
|
| -<h2>Package header</h2>
|
| +<h2 id="package">Package header</h2>
|
|
|
| <p>
|
| The header contains the author's public key and the extension's signature.
|
| @@ -63,7 +63,7 @@ the <code>.crx</code> header in order:
|
| </tr>
|
| </table>
|
|
|
| -<h2>Extension contents</h2>
|
| +<h2 id="contents">Extension contents</h2>
|
|
|
| <p>
|
| The extension's ZIP file is appended to the <code>*.crx</code> package after the
|
| @@ -71,7 +71,7 @@ header. This should be the same ZIP file that the signature in the header
|
| was generated from.
|
| </p>
|
|
|
| -<h2>Example</h2>
|
| +<h2 id="example">Example</h2>
|
|
|
| <p>
|
| The following is an example hex dump from the beginning of a <code>.crx</code>
|
| @@ -100,7 +100,7 @@ Members of the community have written the following scripts to package
|
| <a href="http://github.com/Constellation/crxmake">github: crxmake</a>
|
| </blockquote>
|
|
|
| -<h3>Bash</h3>
|
| +<h3 id="bash">Bash</h3>
|
| <pre>
|
| #!/bin/bash -e
|
| #
|
| @@ -144,4 +144,4 @@ sig_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$sig" | awk '{print $5}')))
|
| cat "$pub" "$sig" "$zip"
|
| ) > "$crx"
|
| echo "Wrote $crx"
|
| -</pre>
|
| +</pre>
|
|
|