動手寫一款簡單的chrome天氣插件

極簡天氣

一款簡單的chrome天氣插件岳枷。

github https://github.com/yohnz/weather
如圖:

1.png

創(chuàng)建文件

新建weather文件夾,里面包含manifest.json氢烘,popup.html和images文件夾家厌。images文件夾放16,48,128三種不同尺寸的圖標(biāo)

manifest.json內(nèi)代碼如下:

{
  "manifest_version":2,
  "name":"極簡天氣",
  "description":"極簡天氣預(yù)報",
  "version":"1.0",
  "icons": {
        "16": "images/sun16.png",
        "48": "images/sun48.png",
        "128": "images/sun128.png"
   },
  "browser_action":{
      "default_icon":"images/sun48.png",
      "default_title":"天氣預(yù)報",
      "default_popup":"popup.html"
  },
   
}

popup.html的代碼如下:

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>天氣</title>
</head>
<body>
 <div class="weather">    
    Test    
 </div>
</body>
</html>

文件說明

manifest.json

必需文件饭于,是整個擴(kuò)展的入口维蒙,每個Chrome擴(kuò)展都包含一個Manifest文件。Manifest必須包含name颅痊、version和manifest_version屬性斑响。

屬性說明:

  • manifest_version指定文件格式的版本,在Chrome18之后舰罚,應(yīng)該都是2
  • name擴(kuò)展名稱
  • version 擴(kuò)展版本號
  • version擴(kuò)展的版本
  • icons擴(kuò)展列表圖標(biāo)
  • browser_action指定擴(kuò)展在Chrome工具欄中的顯示信息营罢。
  • default_icondefault_title饲漾、default_popup依次指定圖標(biāo)、標(biāo)題吃型、對應(yīng)的頁面

Popup頁面

Popup頁面是當(dāng)用戶點(diǎn)擊擴(kuò)展圖標(biāo)時伙菊,展示在圖標(biāo)下面的頁面。

打開chrome擴(kuò)展程序界面运翼,勾選"開發(fā)者模式",拖入weather文件夾兴枯,然后就可以看到weather擴(kuò)展已經(jīng)出現(xiàn)在chrome擴(kuò)展程序列表了

1.jpg

同時,工具欄也出現(xiàn)了weather的圖標(biāo)悠夯,點(diǎn)擊之后會彈出popup界面:

2.jpg

完善頁面和樣式

完善靜態(tài)popup頁面,模擬天氣數(shù)據(jù):

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>天氣</title>
</head>
<body>
    <div class="weather">
        <div class="today" id="today">
            <h1 class="city">廈門</h1>
            <div class="row_detail">![](http://upload-images.jianshu.io/upload_images/1281368-9e0ad1352ce6bb91.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
                <h1>19<span>℃</span></h1></div>
            <div class="wind">
                <h2>陰</h2>
                <h4>風(fēng)速 20   濕度 89%</h4></div>
        </div>
        <div class="content">
            <div class="wrap" id="wrap">
                <div class="row">
                    <h4>2016-05-16</h4>![](http://upload-images.jianshu.io/upload_images/1281368-9e0ad1352ce6bb91.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
                    <h1>19~24</h1>
                    <h4>陰</h4>
                </div>               
            </div>
        </div>
    </div>
</body>
</html>

新建CSS文件沦补,并在popup頁面引入

body{
    width:740px;
    height:400px;
    font-family: 'Microsoft Yahei';
    color:#333;
    background:#fefefe;
    text-shadow:1px 1px 6px #333;
}

.city{
    text-align:center
}
.today{
    padding-bottom:30px;
}
.row_detail{
    display: flex;
    direction: row;
    justify-content:center;
    align-items: center;
}
.row_detail img{
    width:80px;    
}
.row_detail h1{
    font-size:60px;
}
.wind{
    text-align: center;
}
.content{
    display: flex;
    direction: column
}

.wrap{
    display: flex;
    direction: row;
    flex: 1;
    justify-content:space-around;
    align-items: center;
}
.row{
    background:#fff;
    border:1px solid #ccc;
    padding:10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.row img{
    width:80px;
}
.row h1{
    font-size:18px;
}
h1,h4{
    text-align: center;
    margin:0;
}

點(diǎn)擊工具欄weather圖標(biāo)夕膀,此時界面如圖:

3.jpg

獲取真實(shí)天氣數(shù)據(jù)

Google允許Chrome擴(kuò)展應(yīng)用不必受限于跨域限制。但出于安全考慮魂奥,需要在Manifest的permissions屬性中聲明需要跨域的權(quán)限易猫。
這里以和風(fēng)天氣API為例.
首先,在Manifest里添加要請求的API接口:

"permissions":[
     "http://api.openweathermap.org/data/2.5/forecast?q=*",   
  ]

然后新建popup.js并在popup頁面中引入
簡單的ajax函數(shù):

function httpRequest(url,callback) {
    var xhr = new XMLHttpRequest();
    xhr.open('GET',url,true);
    xhr.onreadystatechange = function() {
        if(xhr.readyState === 4){
            callback(xhr.responseText);
        }
    }
    xhr.send();
}

和風(fēng)天氣API可以通過城市名稱哈蝇,城市代碼,IP三種方式來獲取指定城市天氣數(shù)據(jù)瞬场,不過經(jīng)過測試發(fā)現(xiàn),IP獲取的方式不準(zhǔn)確眼五,城市有偏差彤灶,所以,直接用城市名稱來獲取诵姜。這里借用http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json獲取城市名稱搏熄。

httpRequest('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json',function(data) {
    if(!data) return;
    data = JSON.parse(data);
    var city = data.city;
    var url = 'https://api.heweather.com/x3/weather?city='+city+'&key=youkey';
        httpRequest(url,function(data) {
            data = JSON.parse(data);
            var result = data["HeWeather data service 3.0"][0];        
            showWeather(city,result);            
        });
});

為了方便的解析圖片,構(gòu)建一個json

var cond_info = {
100:"http://files.heweather.com/cond_icon/100.png",
101:"http://files.heweather.com/cond_icon/101.png",
102:"http://files.heweather.com/cond_icon/102.png",
103:"http://files.heweather.com/cond_icon/103.png",
104:"http://files.heweather.com/cond_icon/104.png",
200:"http://files.heweather.com/cond_icon/200.png",
201:"http://files.heweather.com/cond_icon/201.png",
202:"http://files.heweather.com/cond_icon/202.png",
203:"http://files.heweather.com/cond_icon/203.png",
204:"http://files.heweather.com/cond_icon/204.png",
205:"http://files.heweather.com/cond_icon/205.png",
206:"http://files.heweather.com/cond_icon/206.png",
207:"http://files.heweather.com/cond_icon/207.png",
208:"http://files.heweather.com/cond_icon/208.png",
209:"http://files.heweather.com/cond_icon/209.png",
210:"http://files.heweather.com/cond_icon/210.png",
211:"http://files.heweather.com/cond_icon/211.png",
212:"http://files.heweather.com/cond_icon/212.png",
213:"http://files.heweather.com/cond_icon/213.png",
300:"http://files.heweather.com/cond_icon/300.png",
301:"http://files.heweather.com/cond_icon/301.png",
302:"http://files.heweather.com/cond_icon/302.png",
303:"http://files.heweather.com/cond_icon/303.png",
304:"http://files.heweather.com/cond_icon/304.png",
305:"http://files.heweather.com/cond_icon/305.png",
306:"http://files.heweather.com/cond_icon/306.png",
307:"http://files.heweather.com/cond_icon/307.png",
308:"http://files.heweather.com/cond_icon/308.png",
309:"http://files.heweather.com/cond_icon/309.png",
310:"http://files.heweather.com/cond_icon/310.png",
311:"http://files.heweather.com/cond_icon/311.png",
312:"http://files.heweather.com/cond_icon/312.png",
313:"http://files.heweather.com/cond_icon/313.png",
400:"http://files.heweather.com/cond_icon/400.png",
401:"http://files.heweather.com/cond_icon/401.png",
402:"http://files.heweather.com/cond_icon/402.png",
403:"http://files.heweather.com/cond_icon/403.png",
404:"http://files.heweather.com/cond_icon/404.png",
405:"http://files.heweather.com/cond_icon/405.png",
406:"http://files.heweather.com/cond_icon/406.png",
407:"http://files.heweather.com/cond_icon/407.png",
500:"http://files.heweather.com/cond_icon/500.png",
501:"http://files.heweather.com/cond_icon/501.png",
502:"http://files.heweather.com/cond_icon/502.png",
503:"http://files.heweather.com/cond_icon/503.png",
504:"http://files.heweather.com/cond_icon/504.png",
506:"http://files.heweather.com/cond_icon/506.png",
507:"http://files.heweather.com/cond_icon/507.png",
508:"http://files.heweather.com/cond_icon/508.png",
900:"http://files.heweather.com/cond_icon/900.png",
901:"http://files.heweather.com/cond_icon/901.png",
999:"http://files.heweather.com/cond_icon/999.png"
}

showWeather()函數(shù)構(gòu)建DOM;

function showWeather(city,result) { 
    var daily = result.daily_forecast;
    var now = result.now;
    var dailyDom='';
    for(var i=0;i<daily.length;i++){
        var day = daily[i];
         dailyDom += '<div class="row">'
            +'<h4>'+day.date+'</h4>'
            +'[站外圖片上傳中……(3)]'
            +'<h1>'+day.tmp.min+'~'+day.tmp.max+'</h1>'
            +'<h4>'+day.cond.txt_d+'</h4>'     
        +'</div>'       
    }
    var today = '<h1 class="city">'+city+'</h1>'
                +'<div class="row_detail">'
                    +'[站外圖片上傳中……(4)]'
                    +'<h1>'+now.tmp+'<span>℃</span></h1>'            
                +'</div>'
                +'<div class="wind">'
                    +'<h2>'+now.cond.txt+'</h2>'
                    +'<h4>風(fēng)速 '+now.wind.spd+'   濕度 '+now.hum+'%</h4>'            
                +'</div>'
    
    document.getElementById('today').innerHTML = today;
    document.getElementById('wrap').innerHTML = dailyDom; 
}

這時止后,再點(diǎn)擊weather圖標(biāo)溜腐,天氣擴(kuò)展基本上就完成了瓜喇,不過因?yàn)楹惋L(fēng)API有請求次數(shù)限制,也為了減少請求乘寒,這里做一下數(shù)據(jù)緩存。

var _time = new Date().getTime()-(60*60*1000*2); //接口次數(shù)有限黍檩,兩小時請求一次
var storageTime = localStorage.updateTime||0;

httpRequest('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json',function(data) {
    if(!data) return;
    data = JSON.parse(data);
    var city = data.city;
    var url = 'https://api.heweather.com/x3/weather?city='+city+'&key=youkey';
    if(_time>storageTime){
        httpRequest(url,function(data) {
            data = JSON.parse(data);
            var result = data["HeWeather data service 3.0"][0];        
            showWeather(city,result);
            localStorage.updateTime = new Date().getTime();  
            localStorage.data = JSON.stringify(result);    
        });
    }else{
        var result = JSON.parse(localStorage.data);
        showWeather(city,result);
    }

});

至此,一個簡單的chrome天氣擴(kuò)展就完成了喳逛,是不是比想象中更簡單?如果覺得本文有幫助,請github賞個star~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末姐呐,一起剝皮案震驚了整個濱河市典蝌,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌鸠澈,老刑警劉巖截驮,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異涵妥,居然都是意外死亡坡锡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門帆锋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來贸弥,“玉大人,你說我怎么就攤上這事〕家桑” “怎么了徙菠?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長缺狠。 經(jīng)常有香客問我萍摊,道長,這世上最難降的妖魔是什么冰木? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任踊沸,我火速辦了婚禮,結(jié)果婚禮上逼龟,老公的妹妹穿的比我還像新娘。我一直安慰自己奕短,他們只是感情好疾渣,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著杈女,像睡著了一般吊圾。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上项乒,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天檀何,我揣著相機(jī)與錄音廷支,去河邊找鬼栓辜。 笑死,一個胖子當(dāng)著我的面吹牛藕甩,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播僵娃,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼腋妙,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了骤素?” 一聲冷哼從身側(cè)響起谆甜,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤集绰,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后栽燕,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體碍岔,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年榆纽,在試婚紗的時候發(fā)現(xiàn)自己被綠了捏肢。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡衣屏,死狀恐怖辩棒,靈堂內(nèi)的尸體忽然破棺而出膨疏,到底是詐尸還是另有隱情钻弄,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布双霍,位于F島的核電站,受9級特大地震影響洒闸,放射性物質(zhì)發(fā)生泄漏均芽。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一深纲、第九天 我趴在偏房一處隱蔽的房頂上張望劲妙。 院中可真熱鬧,春花似錦镣奋、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至耘分,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間啤贩,已是汗流浹背拜秧。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留志衍,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓培廓,卻偏偏與公主長得像春叫,于是被迫代替她去往敵國和親肩钠。 傳聞我的和親對象是個殘疾皇子暂殖,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容