We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 882654c commit 37040e4Copy full SHA for 37040e4
scripts/background.js
@@ -23,6 +23,10 @@ function backgroundCheck() {
23
chrome.idle.queryState(SETTINGS_INTERVAL_INACTIVITY, function (state) {
24
if (state === 'active') {
25
tab.summaryTime += 1;
26
+ chrome.browserAction.setBadgeText({
27
+ tabId: activeTab.id,
28
+ text: String(convertSummaryTimeToString(tab.summaryTime))
29
+ });
30
}
31
});
32
0 commit comments