replit-ext-helper
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i replit-ext-helper

Weekly Downloads

8

Version

0.0.7

License

none

Unpacked Size

117 kB

Total Files

5

Last publish

Collaborators

  • luisafk