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

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

Issue 132433007: Updates to hosting docs inline with policy changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « chrome/common/extensions/docs/templates/articles/external_extensions.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <h1>Hosting</h1> 1 <h1>Hosting</h1>
2 2
3 <p class="warning"><b>Warning:</b>
4 As of Chrome 33,
5 Windows stable/beta channel users can only download extensions
6 hosted in the Chrome Web store,
7 except for installs via
8 <a href="https://support.google.com/chrome/a/answer/188453">enterprise policy</a >
9 or
10 <a href="getstarted.html#unpacked">developer mode</a>
11 (see
12 <a href="http://blog.chromium.org/2013/11/protecting-windows-users-from-malicio us.html">Protecting Windows users from malicious extensions</a>).
13 You can still create your own <code>.crx</code> file and use it for testing in t he dev channel,
14 but you can't host that file on your own server.
15 </p>
16
3 <p> 17 <p>
4 This page tells you how to host <code>.crx</code> files 18 This page tells you how to host <code>.crx</code> files
5 on your own server. 19 on your own server.
6 If you distribute your extension, app, or theme solely through the 20 If you distribute your extension, app, or theme solely through the
7 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>, 21 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>,
8 you don't need this page. 22 you don't need this page.
9 Instead, consult the 23 Instead, consult the
10 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and 24 <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>. 25 <a href="http://code.google.com/chrome/webstore/index.html">developer documentat ion</a>.
12 </p> 26 </p>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 <p> 88 <p>
75 The most common reason for failing to recognize an installable file 89 The most common reason for failing to recognize an installable file
76 is that the server sends the header 90 is that the server sends the header
77 <code>X-Content-Type-Options: nosniff</code>. 91 <code>X-Content-Type-Options: nosniff</code>.
78 The second most common reason 92 The second most common reason
79 is that the server sends an unknown content type&mdash;one 93 is that the server sends an unknown content type&mdash;one
80 that isn't in the previous list. 94 that isn't in the previous list.
81 To fix an HTTP header issue, 95 To fix an HTTP header issue,
82 either change the configuration of the server 96 either change the configuration of the server
83 or try hosting the <code>.crx</code> file at another server. 97 or try hosting the <code>.crx</code> file at another server.
84 </p> 98 </p>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/templates/articles/external_extensions.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698