Management of browser resources including localStorage, sessionStorage, cookies, scripts, and stylesheets. The Resources tool provides comprehensive access to browser storage and loaded resources.
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;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;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.