tommut / HttpRequester

HttpRequester add-on for Firefox
https://addons.mozilla.org/En-us/firefox/addon/httprequester/
161 stars 39 forks source link

Import/Export requests by local file system #5

Open daiguocheng opened 9 years ago

daiguocheng commented 9 years ago

It is very useful, and another tool named 'RESTClient' support it.

tommut commented 9 years ago

Thanks. This is a good request and something I agree should be added. I'll look into it.

In the meantime it is still possible, albeit not very user-friendly. For performance reasons the history is stored in the Firefox preferences and not an external file. It is just stored as a big JSON string. You can copy the value by going to: about:config in the url bar and then filtering on: extensions.httprequester.history

The format is a JSON array of request/responses. Copy the entire value. Then on the second PC modify the same property and paste the value there. Then your requests should be on your second PC.

On Fri, Mar 6, 2015 at 4:55 AM, daiguocheng notifications@github.com wrote:

It is very useful, and another tool named 'RESTClient' support it.

— Reply to this email directly or view it on GitHub https://github.com/tommut/HttpRequester/issues/5.

daiguocheng commented 9 years ago

Thank you very much!