Browser API for browsers without IE

IE has a WinInet API, such as GetUrlCacheEntryInfo, for reading and managing IE browser cache.

Is there a similar API for browsers without IE like Firefox or Chrome? If so, where can I get more information?

thanks

Update:

According to the following ( Accessing the Firefox Cache from the XPCOM Component ), the WinInet GetUrlCacheEntryInfo () function can be executed using nsICacheSession.openCacheEntry () to get nsICacheEntryDescriptor. Is there an equivalent WinInet function CreateUrlCacheEntry () that will create a cache entry?

+3
source share
4 answers

, nsICacheSession.openCacheEntry() ACCESS_READ_WRITE .

0

I searched the same thing and here it is for Chrome: http://dev.chromium.org/developers/design-documents/disk-cache

0
source

to use a webpage, you may need to view the YUI storage utility

http://developer.yahoo.com/yui/storage/

0
source

Source: https://habr.com/ru/post/1710195/


All Articles