Holllo/re-nav
Holllo
/
re-nav
Archived
1
Fork 0
This repository has been archived on 2025-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
re-nav/source/background-scripts/commands.ts

8 lines
228 B
TypeScript

import {toggleAllRedirects} from '../utilities/toggle-all-redirects.js';
export async function onCommandsHandler(command: string): Promise<void> {
if (command === 'toggleAllRedirects') {
await toggleAllRedirects();
}
}