摘要: C++语言: Codee#1208001 #include 02 #include 03 using namespace std;04 05 class Pet {06 string pname;07 public:08 Pet(const string& name):pname(name){}09 virtual string name() const { re... 阅读全文
posted @ 2010-07-18 18:43 莫忆往西 阅读(228) 评论(0) 推荐(0) 编辑
摘要: I spent a day in reading the chrome extension development. Its main point is aboout manifest.json and backgroud.html and popup.html.http://code.google.com/chrome/extensions/ 官方文档一个扩展的主要内容.crx本质上是一个zip压缩包包括: A manifest file:只是配置信息,没有任何可执行代码 One or more HTML files (unless the extension is a theme) Opt 阅读全文
posted @ 2010-07-18 17:00 莫忆往西 阅读(425) 评论(0) 推荐(0) 编辑