ChromeApp开发者之路

Chrome开发的主要产品形式

Apps

Chrome Apps let you use HTML5, CSS, and JavaScript to deliver an experience comparable to a native application.
  • 借助Chrome的App环境,开发可以单独运行的软件。
  • 运用 HTML5/CSS/JS。
    总结,这个开发的意义不是很大,
    原因如下:
  • h5的性能问题
  • 无法自由的调用原生权限
  • 无法方便的上架到 Windows/Mac OS App市场。
  • 最终还是会被原生开发所取代。
    所以,不要在这里浪费时间了。

Extensions

Extensions are small software programs that can modify and enhance the functionality of the Chrome browser. You write them using web technologies such as HTML, JavaScript, and CSS.
  • 扩展是一种小程序, 一种可以改变和增强 Chrome 浏览器功能的小程序。
  • 运用 HTML5/CSS/JS。

Themes

属于 Extensions 的一种。
也很有意思。但是比较小众。

** 第二种将成为主流。**

开始行动

对于技术人员,阻拦我们进步的往往不是技术问题。
很多非技术的问题需要我们去处理。虽然很烦人,也很有乐趣。

开始准备

  • macbook pro/pc
  • google-chrome
  • google account
  • a visa credit card
  • english ability
  • a vpn
  • h5/css/js

开发

文档: https://developer.chrome.com/extensions
中文文档: http://open.chrome.360.cn/extension_dev/overview.html
\

你可能感兴趣的:(ChromeApp开发者之路)