Skip to content

Commit

Permalink
Fix update notification
Browse files Browse the repository at this point in the history
  • Loading branch information
typcn committed Jan 4, 2016
1 parent db06b7e commit 34614c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chrome-extension/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ chrome.runtime.onInstalled.addListener(function(details) {
message: "支持 You-Get 插件,解析播放近百家视频网站\n与 Bilibili 助手兼容,同时安装以支持 html5 与 mac 客户端播放器一键切换\n支持自动静默打开客户端等功能,可到扩展设置中开启",
iconUrl: "img/icon48.png"
}
if(localStorage.lastNotification != 1.3){
localStorage.lastNotification = 1.3;
if(localStorage.lastNotification != 1.4){
localStorage.lastNotification = 1.4;
showNotification(opt);
}
};
Expand Down
2 changes: 1 addition & 1 deletion chrome-extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Bilibili Mac Client Helper",
"description": "Chrome Helper for Bilibili Mac Client",
"version": "1.4",
"version": "1.41",
"permissions": [
"storage",
"tabs",
Expand Down

0 comments on commit 34614c1

Please sign in to comment.