mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-10-07 16:35:15 +08:00
优化番茄钟完成后Badge显示文本
This commit is contained in:
@@ -59,7 +59,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
|
|||||||
minutes: 24,
|
minutes: 24,
|
||||||
seconds: 60,
|
seconds: 60,
|
||||||
countdownTimer: "25:00",
|
countdownTimer: "25:00",
|
||||||
status:"init"
|
status: "init"
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@@ -120,7 +120,14 @@ function countdown({ minutes, seconds, status }) {
|
|||||||
|
|
||||||
//设置badge文本用来显示剩余分钟数
|
//设置badge文本用来显示剩余分钟数
|
||||||
chrome.storage.sync.get("pomoData", ({ pomoData }) => {
|
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() });
|
chrome.browserAction.setBadgeText({ text: pomoData.minutes.toString() + ":" + pomoData.seconds.toString() });
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log(currentTimer);
|
console.log(currentTimer);
|
||||||
|
Reference in New Issue
Block a user