if(window.localStorage){
            var NotificationTime = localStorage.getItem(Prefix + "NotificationTime");
            if(NotificationTime){
                //如果距离上次弹出时间大于30s,才允许弹出通知
                EnableNotification = (Math.round(new Date().getTime()/1000)-parseInt(NotificationTime))>30;