MCPcopy Index your code
hub / github.com/Exafunction/codeium-chrome / loggedOut

Function loggedOut

src/shared.ts:11–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9}
10
11export async function loggedOut(): Promise<void> {
12 await Promise.all([
13 chrome.action.setPopup({ popup: 'popup.html' }),
14 chrome.action.setBadgeText({ text: 'Login' }),
15 chrome.action.setIcon({
16 path: {
17 16: '/icons/16/codeium_square_inactive.png',
18 32: '/icons/32/codeium_square_inactive.png',
19 48: '/icons/48/codeium_square_inactive.png',
20 128: '/icons/128/codeium_square_inactive.png',
21 },
22 }),
23 chrome.action.setTitle({ title: 'Codeium' }),
24 clearLastError(),
25 ]);
26}
27
28export async function loggedIn(): Promise<void> {
29 await Promise.all([

Callers 2

serviceWorker.tsFile · 0.90
popup.tsFile · 0.90

Calls 1

clearLastErrorFunction · 0.85

Tested by

no test coverage detected