mjrgit / chrome-rest-client

Automatically exported from code.google.com/p/chrome-rest-client
0 stars 0 forks source link

Manage Content-Type dropdown options #185

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I cannot find a way to remove added entries from the Content-Type drop down if 
I no longer need them.  A way to manage those entries would be nice.

If I am incorrect, please show me how to manage this.

Original issue reported on code.google.com by ethereal...@gmail.com on 12 Jun 2013 at 1:50

GoogleCodeExporter commented 8 years ago
Hi,
There is no such option to delete those entries from the app. It is stored in 
WebSQL database. Under "Resources" tab in Chrome inspector expand "Web SQL". 
There will be restClient database. Values are stored in form_encoding table. 
Unfortunately there is no option to delete records from here as well. 
However you can run query like "DELETE FROM form_encoding where id IN 
(id1,id2)" where
id1, id2, idN is a record ID from form_encoding table.
You must paste this query in query editor. The editor will be in right panel 
when you click on "restClient" database name. 

Original comment by jarro...@gmail.com on 12 Jun 2013 at 5:19