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

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

Issue 1137753005: Updating extension hosting docs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ben's fixes Created 5 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
OLDNEW
1 <h1>Hosting</h1> 1 <h1>Hosting</h1>
2 2
3 <p class="warning"><b>Warning:</b> 3 <p class="warning"><b>Warning:</b>
4 As of Chrome 33, 4 As of Chrome 33,
5 Windows stable/beta channel users can only download extensions 5 Windows users can only download extensions
6 hosted in the Chrome Web store, 6 hosted in the Chrome Web store,
7 except for installs via 7 except for installs via
8 <a href="https://support.google.com/chrome/a/answer/188453">enterprise policy</a > 8 <a href="https://support.google.com/chrome/a/answer/188453">enterprise policy</a >
9 or 9 or
10 <a href="getstarted#unpacked">developer mode</a> 10 <a href="getstarted#unpacked">developer mode</a>
11 (see 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>). 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, 13 As of Chrome 44, no external installs are allowed from a path to a local .crx on Mac
14 but you can't host that file on your own server. 14 (see
15 <a href="http://blog.chromium.org/2015/05/continuing-to-protect-chrome-users-fro m.html">Continuing to protect Chrome users from malicious extensions</a>).
15 </p> 16 </p>
16 17
17 <p> 18 <p>
18 This page tells you how to host <code>.crx</code> files 19 This page tells you how to host <code>.crx</code> files
19 on your own server. 20 on your own server.
20 If you distribute your extension, app, or theme solely through the 21 If you distribute your extension, app, or theme solely through the
21 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>, 22 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>,
22 you don't need this page. 23 you don't need this page.
23 Instead, consult the 24 Instead, consult the
24 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and 25 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 The most common reason for failing to recognize an installable file 90 The most common reason for failing to recognize an installable file
90 is that the server sends the header 91 is that the server sends the header
91 <code>X-Content-Type-Options: nosniff</code>. 92 <code>X-Content-Type-Options: nosniff</code>.
92 The second most common reason 93 The second most common reason
93 is that the server sends an unknown content type&mdash;one 94 is that the server sends an unknown content type&mdash;one
94 that isn't in the previous list. 95 that isn't in the previous list.
95 To fix an HTTP header issue, 96 To fix an HTTP header issue,
96 either change the configuration of the server 97 either change the configuration of the server
97 or try hosting the <code>.crx</code> file at another server. 98 or try hosting the <code>.crx</code> file at another server.
98 </p> 99 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698