Where is the temporary file generated by chrome extension? -


a chrome extension generated image file, opened in chrome tab, url of tab

filesystem:chrome-extension://fdpohaocaechififmbbbbbknoalclacl/temporary/screencapture-www-google-com-webhp-1436884653249.png 

is possible locate temporary file in os?

fyi. here code generate file

 window.webkitrequestfilesystem(window.temporary, size, function(fs){     fs.root.getfile(name, {create: true}, function(fileentry) {         fileentry.createwriter(function(filewriter) {             filewriter.onwriteend = onwriteend;             filewriter.write(blob);         }, errorhandler);     }, errorhandler); }, errorhandler); 

the chrome extension installed on win7 pc at:

c:\users\{myname}\appdata\local\google\chrome\user data\profile 1\extensions\fdpohaocaechififmbbbbbknoalclacl\0.0.15_0 

but cannot find temporary file/folder.

for windows os ,please follow below steps:

1-go c:\users{username}\appdata\local\google\chrome\user data\default\file system

2-sort folders according date modified. find correct folder , open it.

3-go further down through folder (1 or 2 steps).there find captured files without extension (there may file written on type bar).change extensions *.png (or picture format want)

4-enjoy


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -