replit-ext-helper
v0.0.7
Published
A helper utility for browser extensions and userscripts.
Downloads
2
Readme
Replit extensions helper
A helper utility for browser extensions and userscripts.
Note: not for Replit extensions.
API
A global replitExtHelper
object is exposed. It's an object with the following properties.
It also extends EventTarget
so you can listen to events on it.
Note that it may have more properties than listed here, but those are not part of the public API.
export class ReplitExtHelper extends EventTarget {
debug: boolean;
get isDesktop(): boolean;
set isDesktop(value: true | null);
replitSvelteComponents: Record<
Exclude<ReplitSvelteComponents, "DocsProp">,
any
>;
injectReplitSvelteStyles(): void;
getElement(query: string): Element | null;
getElements(query: string): Element[];
waitForElement(query: string): Promise<Element>;
get routeContainerElm(): HTMLDivElement;
}