This repository was archived by the owner on Jan 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
49 lines (44 loc) · 1.47 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
chrome.runtime.onInstalled.addListener(function() {
chrome.storage.local.set({showCpu: true}, function() {});
handleListener();
});
chrome.runtime.onStartup.addListener(function() {
handleListener();
});
function updateCpuUsage(update) {
for (var key in update) {
const cpu = update[key].cpu;
const tabId = update[key].tasks[0].tabId;
if (tabId) {
chrome.tabs.get(tabId, function(tab) {
const title = tab.title.split("% ", 2).pop();
chrome.tabs.executeScript(
tabId,
{ code:'document.title = "' + Math.round(cpu) + '% ' + title + '"'},
_=>{ chrome.runtime.lastError }
);
});
};
};
};
function handleListener() {
chrome.storage.local.get('showCpu', function(data) {
console.log('handle: ' + data.showCpu);
if (data.showCpu) {
chrome.processes.onUpdated.addListener(updateCpuUsage);
chrome.browserAction.setBadgeText({text: 'on'});
chrome.browserAction.setBadgeBackgroundColor({color: 'blue'});
} else {
chrome.processes.onUpdated.removeListener(updateCpuUsage);
chrome.browserAction.setBadgeText({text: 'off'});
chrome.browserAction.setBadgeBackgroundColor({color: 'black'});
};
});
};
chrome.browserAction.onClicked.addListener(function (tab) {
chrome.storage.local.get('showCpu', function(data) {
console.log('set to: ' + !data.showCpu);
chrome.storage.local.set({ showCpu: !data.showCpu}, function() {});
handleListener();
});
});