经常在Chrome应用商店
下载扩展程序也就是插件,有时候在想可不可以自己也开发一个插件用用呢?本文就是在这样的背景下产生的,以一个生活必需的简单获取天气的插件作为开发演示,下面就开始我们的Chrome插件开发之旅
吧!
源码地址:https://github.com/leoyaojy/c...
目录结构:
├── css
│ └── main.css
├── imgs
│ ├── icon-128.png
│ ├── icon-16.png
│ ├── icon-19.png
│ └── icon-38.png
├── js
│ ├── jquery.js
│ └── main.js
├── manifest.json
└── popup.html
效果图:
manifest.json
入口文件,每个Chrome
插件都必须包含一个manifest.json
文件,其中必须包含name
、version
和manifest_version
属性
{
"manifest_version": 2,
"version": "1.0",
"name": "weather",
"description": "a chrome extension for local weather",
"icons": {
"128": "imgs/icon-128.png",
"16": "imgs/icon-16.png"
},
"browser_action": {
"default_icon": {
"19": "imgs/icon-19.png",
"38": "imgs/icon-38.png"
},
"default_title": "weather",
"default_popup": "popup.html"
},
"permissions":[
"http://*/*",
"https://*/*"
]
}
属性说明:
manifest_version
:此键指定此扩展使用的manifest.json
的版本,目前必须是2version
:插件版本号name
:插件名称description
:插件描述icons
:插件图标,Chrome
扩展程序页显示-
browser_action
:指定插件在Chrome
工具栏中的显示信息default_icon
:图标default_title
:标题default_popup
:弹出页
permissions
:权限
注意:如果我们需要向服务器请求数据,就需要在permissions
中添加请求数据的接口,否则会报跨域请求的限制。但是如果需要向多个接口请求数据,建议直接按我的方式书写匹配规则,这样不管多少接口都适用
popup.html
popup
页面是当用户点击插件图标时,展示在图标下方的页面
Weather
北京
09:00发布
8℃
晴
这里我们使用了jQuery
,方便对dom
元素进行操作,注意我们不能直接在html
里写js
代码,只能通过外部引用的方式引入js
文件。
main.js
ajax
请求接口数据并渲染到popup
页面中去,这里使用的是心知天气的api
接口,但是发现使用它提供的免费数据api
只能获取最多三天的天气预报数据,而且默认提供的图标不是我想要的风格,需调用多个接口才能实现基本功能。后来发现它也有提供插件的服务,只需要简单的几行js
代码就可以实现酷炫天气效果,在控制台Network
分析面板提取了它的api
接口,可获取近五天的天气情况,一个接口就可以很方便地实现所需要的功能,我这里代码使用了ES6
模板字符串,减少了对字符串拼接的操作
var week = ['周日','周一','周二','周三','周四','周五','周六'],
api="http://widget.thinkpage.cn/api/weather?flavor=bubble&location=WX4FBXXFKE4F&geolocation=enabled&position=top-right&margin=0px%200px&language=zh-chs&unit=c&theme=chameleon&uid=U3816AF56B&hash=aa5b2d23df45bcc88f28908ecf64e0a5";
$.ajax({
url:api,
type:"GET",
success:function(d){
var w = d.weather,
city = w.location.name,
air = w.air.city,
now = w.now,
daily = w.daily,
text = now.text,
code = now.code,
temperature = now.temperature,
humidity = now.humidity,
wind_direction = now.wind_direction,
wind_scale = now.wind_scale,
last_update = now.last_update,
hour = new Date(last_update).getHours()>=10?new Date(last_update).getHours():"0"+new Date(last_update).getHours(),
minutes = new Date(last_update).getMinutes()>=10?new Date(last_update).getMinutes():"0"+new Date(last_update).getMinutes(),
aqi = air.aqi,
quality = air.quality;
$(daily).each(function(index, el) {
var date = new Date(this.date),
i = date.getDay(),
month = date.getMonth()+1,
today = date.getDate();
var day = index === 0?"今天":(index===1?"明天":week[i]);
$("#list").append(`
${day} ${month}/${today}
${this.text_day}/${this.text_night}
${this.low}/${this.high}℃
`);
});
$("#city").text(city);
$("#updateTime").text(hour+":"+minutes+"发布");
$("#pic").find("img").attr("src","./imgs/"+code+".svg").end().find('p').first().text(temperature+"℃").next().text(text);
$("#info").html(`
${wind_direction}风${wind_scale}级
空气${quality}${aqi}
相对湿度${humidity}
`);
}
});
最后,祝大家新年快乐,2017和你一起~~~