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

Side by Side Diff: chrome/common/extensions/docs/static/hosting.html

Issue 10455004: Making sure self-hosting and packaging docs are clear about keeping private key secure (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 <div id="pageData-name" class="pageData">Hosting</div> 1 <div id="pageData-name" class="pageData">Hosting</div>
2 2
3 <p class="note">
4 <b>For Advanced Developers Only:</b>
5 Do not follow the instructions on this page
6 unless you understand the security implications
7 of packaging and hosting files on your own server.
8 If you host on the Chrome Web Store,
9 you do not need to worry
10 about packaging or self-hosting.
11 </p>
12
3 <p> 13 <p>
4 This page tells you how to host <code>.crx</code> files 14 This page tells you how to host <code>.crx</code> files
5 on your own server. 15 on your own server.
6 If you distribute your extension, app, or theme solely through the 16 If you distribute your extension, app, or theme solely through the
7 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>, 17 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>,
8 you don't need this page. 18 you don't need this page.
9 Instead, consult the 19 Instead, consult the
10 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and 20 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and
11 <a href="http://code.google.com/chrome/webstore/index.html">developer documentat ion</a>. 21 <a href="http://code.google.com/chrome/webstore/index.html">developer documentat ion</a>.
12 </p> 22 </p>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 The most common reason for failing to recognize an installable file 85 The most common reason for failing to recognize an installable file
76 is that the server sends the header 86 is that the server sends the header
77 <code>X-Content-Type-Options: no sniff</code>. 87 <code>X-Content-Type-Options: no sniff</code>.
78 The second most common reason 88 The second most common reason
79 is that the server sends an unknown content type&mdash;one 89 is that the server sends an unknown content type&mdash;one
80 that isn't in the previous list. 90 that isn't in the previous list.
81 To fix an HTTP header issue, 91 To fix an HTTP header issue,
82 either change the configuration of the server 92 either change the configuration of the server
83 or try hosting the <code>.crx</code> file at another server. 93 or try hosting the <code>.crx</code> file at another server.
84 </p> 94 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698