mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-01-25 20:50:26 +08:00
优化番茄钟完成后Badge显示文本
This commit is contained in:
parent
7a621d6e25
commit
46799db029
@ -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 }) => {
|
||||||
chrome.browserAction.setBadgeText({ text: pomoData.minutes.toString() + ":" + pomoData.seconds.toString() });
|
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);
|
console.log(currentTimer);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user