/*
* @title Google+タイトル表示変更
* @description Google+の通知をタイトルに「Google+ (X)」の形式で表示する。
* @include http://plus.google.com/
* @license MIT License
* @require
*/
(function(d){
if(d.match(/plus\.google\.com/)){
setInterval(function(){
document.title = "Google+ (" + document.getElementById("gbi1").innerHTML + ")";
},1000);
}
})(document.domain);