Chrome,识别打开标签

时间:2015-06-12 22:10:18

标签: notifications twitch

我正在为谷歌浏览器创建一个扩展程序,它会执行检查twitch.tv上的流是否在线并且将通知用户evey X分钟,我已完成了覆盖。我正在寻找的是一个JScirpt代码,它将识别用户是否已经在流媒体频道上并且将停止通知他。

var username="$user";

setInterval(check,300000);

function check()
{
    request("https://api.twitch.tv/kraken/streams/" + username, function() {
        var json = JSON.parse(this.response);
        if (json.stream == null)
        {
            chrome.browserAction.setIcon({ path: "offline.png" });
        }
        else
        {
            notify();
        }
    });
    return 1;
}

function notify(){
    var opt = {type: "basic",title: username + " is streaming!",message: "Click to join!",iconUrl: "start.png"};
        chrome.notifications.create("", opt, function(notificationId) 
            { 
              setTimeout(function() 
                 { 
                   chrome.notifications.clear(notificationId, function(wasCleared) { console.log(wasCleared); }); 
                 }, 3000); 
            }); 
chrome.browserAction.setIcon({path:"online.png" });
}

chrome.browserAction.onClicked.addListener(function () {
    chrome.tabs.create({ url: "http://www.twitch.tv/"+username });
});

function request(url, func, post)
{
    var xhr = new XMLHttpRequest();
    xhr.onload = func;
    xhr.open(post == undefined ? 'GET' : 'POST', url, true);
    xhr.send(post || '');
    return 1;
}

check();

1 个答案:

答案 0 :(得分:0)

  • 使用window.location.href获取完整的网址。
  • 使用window.location.pathname获取离开主机的URL。

您可以阅读更多here.