Add toolbar icon
This commit is contained in:
parent
647095ad9e
commit
51872621b7
@ -1,5 +1,5 @@
|
||||
trailingComma: "es5"
|
||||
tabWidth: 3
|
||||
tabWidth: 4
|
||||
printWidth: 100
|
||||
semi: true
|
||||
singleQuote: true
|
||||
|
8305
package-lock.json
generated
8305
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -4,6 +4,7 @@ import Options from '../options';
|
||||
import { StolenData } from './stolen-data';
|
||||
import { getshorthost, useEmitter } from '../util';
|
||||
import { getMemory } from '../memory';
|
||||
browser.browserAction.setBadgeBackgroundColor({ color: '#ffb900' });
|
||||
|
||||
async function getCurrentTab() {
|
||||
const [tab] = await browser.tabs.query({
|
||||
@ -13,6 +14,13 @@ async function getCurrentTab() {
|
||||
return tab;
|
||||
}
|
||||
|
||||
function setDomainsNumber(counter: number) {
|
||||
browser.browserAction.setBadgeText({ text: counter.toString() });
|
||||
browser.browserAction.setTitle({
|
||||
title: `Rentgen - ${counter !== 1 ? counter + ' podmiotów' : counter + ' podmiot'} `,
|
||||
});
|
||||
}
|
||||
|
||||
import './global.scss';
|
||||
import './sidebar.scss';
|
||||
|
||||
@ -65,6 +73,8 @@ const Sidebar = () => {
|
||||
return setMarksOccurrence(true);
|
||||
}
|
||||
}
|
||||
setDomainsNumber(Object.values(getMemory().getClustersForOrigin(origin)).length);
|
||||
|
||||
return setMarksOccurrence(false);
|
||||
}, [eventCounts['*'], origin]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user