chrome插件开发(一) 入门篇

1:新建一个文件夹chrome

新建文件 manifest.json 

{  
  "name": "coffee",
  "manifest_version":2,
  "version": "1.0",  
  "description": "coffee test",  
  "browser_action": {  
    "default_icon": "icon.png" ,
    "default_title": "default title",
    "default_popup": "popup.html"
  }  
}

文件夹chrome下还有俩文件

icon.png popup.html

----------------------------------------------------

popup.html的内容如下

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;	charset=UTF-8">
<style type="text/css">
	body {
		width: 50px;
	}
</style>
</head>
<body>窗口
</body>
</html>

==============================

至此一个简单的chrome插件开发完毕。



你可能感兴趣的:(chrome插件开发(一) 入门篇)