mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-10-07 08:25:15 +08:00
优化番茄钟完成后Badge显示文本
This commit is contained in:
@@ -120,7 +120,14 @@ function countdown({ minutes, seconds, status }) {
|
||||
|
||||
//设置badge文本用来显示剩余分钟数
|
||||
chrome.storage.sync.get("pomoData", ({ pomoData }) => {
|
||||
if (pomoData.minutes == 0 && pomoData.seconds == 0) {
|
||||
chrome.browserAction.setBadgeText({ text: "√" });
|
||||
setTimeout(() => {
|
||||
chrome.browserAction.setBadgeText({ text: "" });
|
||||
}, 2000)
|
||||
} else {
|
||||
chrome.browserAction.setBadgeText({ text: pomoData.minutes.toString() + ":" + pomoData.seconds.toString() });
|
||||
}
|
||||
});
|
||||
|
||||
console.log(currentTimer);
|
||||
|
Reference in New Issue
Block a user