Mat Kelly

Results 844 comments of Mat Kelly

Also, per @phonedude, create a sub-folder (e.g., WARCreate WARCs dir) where all WARCs are saved instead of having them placed into the default Downloads folder, which has many other files...

@peterwebster It is a priority. I am currently reliant on the FileSaver ( https://github.com/eligrey/FileSaver.js/ ) library, as it was the most elegant means to even save a file programmatically when...

There might be hope in using the [Chrome FileSystem API](https://developer.chrome.com/apps/fileSystem) to invoke the SaveAs functionality. The API docs indicate that its usage is more focused on Chrome apps than extensions...

When adding fileSystem to the extension's permissions, this unfortunate error occurs: `'fileSystem' is only allowed for packaged apps, but this is a extension.` Back to the drawing board.

[chrome.downloads API](https://developer.chrome.com/extensions/downloads) looks more promising for the extension though we will need to account that the data to be saved is in a `Blob` and not at a URI.

A generic query selector like `document.querySelectorAll('link')` will return all of the link tags in the document (header) but I am still searching for a less generic way to identify fonts...

@ibnesayeed That will be my first approach. I am still investigating if there are other resources that perhaps are missing but represented in these elements. If so, the more generic...

I poked around the module in the issue-105 branch. Even with the example code in-place, no file appears to be written from the extension context. Perhaps there is an issue...

@N0taN3rd Thanks for the recommendation. Getting the data in Blob form is not an issue -- that's working fine for FileSaver. I was opting for [StreamSaver](https://github.com/jimmywarting/StreamSaver.js) due to its ability...