OLD | NEW |
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 Loading... |
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—one | 93 is that the server sends an unknown content type—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> |
OLD | NEW |