0.0.7 • Published 8 months ago

replit-ext-helper v0.0.7

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

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;
}
0.0.7

8 months ago

0.0.6

8 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago