While frameworks such as Rails and Django have made it easy to build web apps and services like AppEngine and Heroku have streamlined the process of deploying your web apps, actually charging for it is still a big pain.
Monetizing web apps is still a painful process, especially for subscription apps. You need a gateway, you need to be PCI compliant or use some sites like chargify, you need to start a company and most of the time you need to live in the US. And then there is Paypal, but this one has its bunch of horror stories too.
This is why I’m pretty excited by the Chrome WebStore as it looks super easy to charge for apps, you can see the live demo here
Anyway, I’ve decided to give it a try and it is indeed super easy to create chrome apps, those will appear on your new tab page.
To give a try you need to start your browser this way:
path/to/chromium-browser --enable-apps
Then you can try my HN App for chromium:
The crx file is just a zip file, so you can download it and check its content if you want.
It only holds a “manifest.json” file and some icons. The manifest file looks like this:
{
"name": "Hacker News",
"version": "0.1",
"icons": { "24": "y24.png", "128": "y128.png" },
"launch": {
"web_url": "http://news.ycombinator.com/"
},
"web_content": {
"enabled": true,
"origin": "http://news.ycombinator.com"
}
}
Then to create the crx file you need to do the following:
chromium-browser --enable-apps --pack-extension=path/to/chromiumapps/HN
OR
This will also create a pem file that contains a private key that will allow you to update your app. You cannot create apps with zip, probably because chromium uses the pem file to sign your app, I’m not positive about this though.
Anyway, the app tab looks like that:
And after clicking on the tab, it should open a special tab for HN:
That’s it, let’s wait and see how the webstore turns out!
Thanks to the guys on this thread
You can find more information chrome apps here"here":http://code.google.com/chrome/apps/docs/developers_guide.html
And don’t forget that Chrome apps are just web apps made easy to install, find and hopefully easy to charge for.
Romy said on 2010-05-23 08:25:21 UTC:
FREE VIAG... aw shucks, foiled by nofollow ;(
Thanks for the writeup.
On a side note, I never realized how pleasing monospace can be on the eyes.
David said on 2010-05-24 20:10:13 UTC:
Last I checked, Google Checkout is still US/Canada only. Do you have any inside information on how the chrome webstore is going to be opened for developers internationally, or is it mentioned somewhere and I didn't see it?
patcito said on 2010-05-25 01:19:30 UTC:
@david It is not mentioned anywhere. But note that google checkout is not US/Canada only for android devs so it may be available to more countries for web store devs too:
"Merchants in Austria, France, Germany, Netherlands, Spain, U.S. and U.K. can also use Google Checkout to sell applications on Android Market."
http://checkout.google.com/support/sell/bin/answer.py?hl=en&answer=134420
David said on 2010-05-25 08:11:57 UTC:
@patcito Ah, makes sense. Thanks! (Although I'm not living in any of those countries either, so it's kind of a moot point anyway ;) )