Domains Accessibility Animation ApplicationCache CSS CacheStorage Console DOM DOMDebugger DOMStorage Database Debugger DeviceOrientation Emulation FileSystem HeapProfiler IndexedDB Input Inspector LayerTree Memory Network Page Power Profiler Rendering Runtime ScreenOrientation Security ServiceWorker Timeline Tracing Worker
Chrome Debugger Protocol Viewer

ApplicationCache Domain

Methods

getFramesWithManifests

Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.

Return object
frameIds
array [ FrameWithManifest ] Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache.

enable

Enables application cache domain notifications.

getManifestForFrame

Returns manifest URL for document in the given frame.

Parameters
frameId
Page.FrameId Identifier of the frame containing document whose manifest is retrieved.
Return object
manifestURL
string Manifest URL for document in the given frame.

getApplicationCacheForFrame

Returns relevant application cache data for the document in given frame.

Parameters
frameId
Page.FrameId Identifier of the frame containing document whose application cache is retrieved.
Return object
applicationCache
ApplicationCache Relevant application cache data for the document in given frame.

Events

applicationCacheStatusUpdated

Parameters
frameId
Page.FrameId Identifier of the frame containing document whose application cache updated status.
manifestURL
string Manifest URL.
status
integer Updated application cache status.

networkStateUpdated

Parameters
isNowOnline
boolean

Types

ApplicationCacheResource

Detailed application cache resource information.

Type: object

Properties
url
string Resource url.
size
integer Resource size.
type
string Resource type.

ApplicationCache

Detailed application cache information.

Type: object

Properties
manifestURL
string Manifest URL.
size
number Application cache size.
creationTime
number Application cache creation time.
updateTime
number Application cache update time.
resources
array [ ApplicationCacheResource ] Application cache resources.

FrameWithManifest

Frame identifier - manifest URL pair.

Type: object

Properties
frameId
Page.FrameId Frame identifier.
manifestURL
string Manifest URL.
status
integer Application cache status.