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

Unified Diff: chrome/common/extensions/docs/templates/articles/app_codelab_10_publishing.html

Issue 12221067: Move Chrome Apps Codelab docs to developer.chrome.com (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed references to github, accordingly to the new github angularjs subdirectories; added a link to… Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/articles/app_codelab_10_publishing.html
diff --git a/chrome/common/extensions/docs/templates/articles/app_codelab_10_publishing.html b/chrome/common/extensions/docs/templates/articles/app_codelab_10_publishing.html
new file mode 100644
index 0000000000000000000000000000000000000000..fa3e9bfa8a4016a95f59b861d849ed933d6b3422
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/articles/app_codelab_10_publishing.html
@@ -0,0 +1,66 @@
+<h1 id="lab_10_publishing">Lab 10 - Publishing</h1>
+
+<p>An app without users is just a piece of code. To get users, you need to distribute your application.
mkearney1 2013/02/12 22:22:11 General comment: images on this page are huge! Can
Renato Mangini (chromium) 2013/02/13 22:55:33 Done.
+All Chrome applications are distributed through the <a href="https://chrome.google.com/webstore">Chrome Web Store</a>.
+For those not familiar with the store, it provides several benefits to users and developers.</p>
+
+<p>For users:</p>
+
+<ul>
+<li> Added security: all apps and extensions are checked for Malware signals.</li>
+<li> All apps are maintained with the latest version the developer has published.</li>
+<li> Ratings and reviews provide a great way to see the quality of applications.</li>
+</ul>
+
+<p>For developers:</p>
+
+<ul>
+<li> You can upload your app once and know that it will be distributed to all users.</li>
+<li> Payments and subscriptions are built in.</li>
+<li> Your app is more discoverable to users.</li>
+<li> Tools help you manage bugs and reviews from users.</li>
+</ul>
+
+<p>The Chrome Web Store has a special <a href="https://chrome.google.com/webstore/developer/dashboard">dashboard for Developers</a> that lets you upload new applications and update existing ones.</p>
+
+<p>The functionality to upload new-style Chrome Apps has only just been enabled for developers.
mkearney1 2013/02/12 22:22:11 Remove feedback sentence.
Renato Mangini (chromium) 2013/02/13 22:55:33 Done.
+We need as much <a href="https://docs.google.com/a/google.com/forms/d/1x3309vpp-KTiHqZWOCQhjVrIWxkm0wEBp2IWMG2ywbU/viewform?id=1x3309vpp-KTiHqZWOCQhjVrIWxkm0wEBp2IWMG2ywbU">feedback</a> as possible on the process.</p>
+
+<p>The process of uploading apps is simple:</p>
+
+<ol>
+<li> Compress your applications root directory (the folder containing the manifest.json file).</li>
mkearney1 2013/02/12 22:22:11 Wrap manifest.json in <code>.
Renato Mangini (chromium) 2013/02/13 22:55:33 Done.
+<li> Visit the <a href="https://chrome.google.com/webstore/developer/dashboard">dashboard</a> and click &quot;Upload new application&quot;.
+<img src="/static/images/codelab/developerdashboard.png" alt="Developer Dashboard"></li>
+<li> Find the file in your system.
+<img src="/static/images/codelab/upload.png" alt="Developer Dashboard Upload">
+<img src="/static/images/codelab/findfile.png" alt="Developer Dashboard Find"></li>
+<li> Upload.</li>
+</ol>
+
+<p class="note"><b>Note:</b> To walkthrough the publishing process, you can use any of the sample apps in this code lab.
+Just make sure it contains the manifest.json.</p>
mkearney1 2013/02/12 22:22:11 Wrap manifest.json in <code>.
Renato Mangini (chromium) 2013/02/13 22:55:33 Done.
Renato Mangini (chromium) 2013/02/13 22:55:33 Done.
mkearney1 2013/02/13 23:17:57 Still not showing 'manifest.json' in <code>. On 2
Renato Mangini (chromium) 2013/02/14 15:45:27 Done.
+
+<p>You should see a screen that looks like this:</p>
+
+<p><img src="/static/images/codelab/md.png" alt="Developer Dashboard Edit"></p>
+
+<p>Done.... Well not quite, nearly.</p>
+
+<p>Now you need to upload the assets and extra meta information about your application before you can publish it to the world. These include:</p>
+
+<ul>
+<li> The icon to display in the store</li>
+<li> The detailed description of your application; this will entice users to download your app</li>
+<li> A screen-shot or video of your app (show the user what your app looks like)</li>
+<li> The primary category where your app is listed</li>
+<li> A small tile icon that will be displayed on the Chrome Web Store wall</li>
+</ul>
+
+<p>There are many other fields, but the above items are mandatory.</p>
+
+<p>If you are happy with everything, you can now publish your application to the public. If you are not quite ready, you can save the draft for later, or you can publish it to a group of testers.</p>
+
+<p><img src="/static/images/codelab/publish.png" alt="Developer Dashboard Publish"></p>
+
+<p>Note: if anyone wants to create a tool that lets users quickly create all the required assets, developers would love you and I will love you long time.</p>

Powered by Google App Engine
This is Rietveld 408576698