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

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

Issue 7778017: Update references to the extension gallery. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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> 3 <p>
4 This page tells you how to host <code>.crx</code> files 4 This page tells you how to host <code>.crx</code> files
5 on your own server. 5 on your own server.
6 If you distribute your extension, app, or theme solely through the 6 If you distribute your extension, app, or theme solely through the
7 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>, 7 <a href="http://chrome.google.com/webstore">Chrome Web Store</a>,
8 you don't need this page. 8 you don't need this page.
9 Instead, consult the store help and 9 Instead, consult the
10 <a href="http://www.google.com/support/chrome_webstore/">store help</a> and
10 <a href="http://code.google.com/chrome/webstore/index.html">developer documentat ion</a>. 11 <a href="http://code.google.com/chrome/webstore/index.html">developer documentat ion</a>.
11 <!-- PENDING: add a link to the help -->
12 </p>
13
14 <p class="note">
15 <strong>Note:</strong>
16 If you've already published extensions to the
17 <a href="https://chrome.google.com/extensions">Extensions Gallery</a>,
18 they will be merged into the store.
19 </p> 12 </p>
20 13
21 <p> 14 <p>
22 By convention, extensions, 15 By convention, extensions,
23 installable web apps, and themes are served&mdash;whether 16 installable web apps, and themes are served&mdash;whether
24 by the Chrome Web Store or by a custom server&mdash;as 17 by the Chrome Web Store or by a custom server&mdash;as
25 <code>.crx</code> files. 18 <code>.crx</code> files.
26 When you upload a ZIP file with the 19 When you upload a ZIP file with the
27 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Develope r Dashboard</a>, 20 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Develope r Dashboard</a>,
28 the dashboard creates the <code>.crx</code> file for you. 21 the dashboard creates the <code>.crx</code> file for you.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 The most common reason for failing to recognize an installable file 75 The most common reason for failing to recognize an installable file
83 is that the server sends the header 76 is that the server sends the header
84 <code>X-Content-Type-Options: no sniff</code>. 77 <code>X-Content-Type-Options: no sniff</code>.
85 The second most common reason 78 The second most common reason
86 is that the server sends an unknown content type&mdash;one 79 is that the server sends an unknown content type&mdash;one
87 that isn't in the previous list. 80 that isn't in the previous list.
88 To fix an HTTP header issue, 81 To fix an HTTP header issue,
89 either change the configuration of the server 82 either change the configuration of the server
90 or try hosting the <code>.crx</code> file at another server. 83 or try hosting the <code>.crx</code> file at another server.
91 </p> 84 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698