diff --git a/packages/wxt/src/client/content-scripts/content-script-context.ts b/packages/wxt/src/client/content-scripts/content-script-context.ts index 48165b610..0f20c8ecc 100644 --- a/packages/wxt/src/client/content-scripts/content-script-context.ts +++ b/packages/wxt/src/client/content-scripts/content-script-context.ts @@ -1,6 +1,6 @@ -import { ContentScriptDefinition } from '../../types'; import { browser } from 'wxt/browser'; import { logger } from '../../sandbox/utils/logger'; +import { ContentScriptDefinition } from '../../types'; import { WxtLocationChangeEvent, getUniqueEventName } from './custom-events'; import { createLocationWatcher } from './location-watcher'; @@ -163,6 +163,38 @@ export class ContentScriptContext implements AbortController { return id; } + /** + * Clears a timeout set by ctx.setTimeout. + */ + clearTimeout(id: number | null): void { + if (id !== null) { + clearTimeout(id); + } + } + + /** + * Clears an interval set by ctx.setInterval. + */ + clearInterval(id: number | null): void { + if (id !== null) { + clearInterval(id); + } + } + + /** + * Cancels an animation frame request set by ctx.requestAnimationFrame. + */ + cancelAnimationFrame(id: number): void { + cancelAnimationFrame(id); + } + + /** + * Cancels an idle callback request set by ctx.requestIdleCallback. + */ + cancelIdleCallback(id: number): void { + cancelIdleCallback(id); + } + /** * Call `target.addEventListener` and remove the event listener when the context is invalidated. *