or run

npx @tessl/cli init
Log in

Version

Tile

Overview

Evals

Files

docs

code-snippets.mdconsole-tool.mdcore-api.mdelements-inspector.mdindex.mdinfo-display.mdnetwork-monitor.mdresource-manager.mdsettings-manager.mdsource-viewer.mdtool-development.md
tile.json

resource-manager.mddocs/

Resource Manager

Management of browser resources including localStorage, sessionStorage, cookies, scripts, and stylesheets. The Resources tool provides comprehensive access to browser storage and loaded resources.

Capabilities

Storage Management

Manage browser storage with CRUD operations and real-time updates.

/**
 * Refresh all resource sections
 */
refresh(): void;

/**
 * Refresh localStorage section
 */
refreshLocalStorage(): void;

/**
 * Refresh sessionStorage section  
 */
refreshSessionStorage(): void;

/**
 * Refresh cookie section
 */
refreshCookie(): void;

Resource Inspection

Inspect loaded scripts, stylesheets, images, and iframes.

/**
 * Refresh script resources section
 */
refreshScript(): void;

/**
 * Refresh stylesheet resources section
 */
refreshStylesheet(): void;

/**
 * Refresh iframe resources section
 */
refreshIframe(): void;

/**
 * Refresh image resources section
 */
refreshImage(): void;

Configuration

const config: {
  set<K extends keyof ResourcesConfig>(name: K, value: ResourcesConfig[K]): void;
};

interface ResourcesConfig {
  /** Hide Eruda settings from resources view */
  hideErudaSetting?: boolean;
  /** Auto refresh elements when DOM changes */
  observeElement?: boolean;
}

Features include localStorage/sessionStorage editing, cookie management, script/stylesheet inspection, and image resource viewing.