Firefox has the "modifyheaders" plugin. Is there anything like it for Google Chrome?
Asked
Active
Viewed 7.0k times
48
-
This question was asked when there was only an experimental API for Chrome extensions to access HTTP headers. Since then the [WebRequest API](http://code.google.com/chrome/extensions/webRequest.html) has been released, so now anyone can distribute extensions doing all sorts of manipulation of the headers. – Knut Forkalsrud Jun 15 '12 at 23:38
-
1Possible duplicate of [Chrome Extension to Modify Outgoing request headers](http://stackoverflow.com/questions/3274144/can-i-modify-outgoing-request-headers-with-a-chrome-extension) – Sachin Jain Aug 09 '15 at 04:12
4 Answers
43
There's a bunch of nice extensions now!
Modifying headers for all requests
Generic HTTP / REST clients
- Postman REST Client (Packaged App) - closed source, but used to be open source
- DHC - REST/HTTP API Client - closed source, but faster and more robust than POSTman
- Advanced REST Client - open source

Sachin Jain
- 21,353
- 33
- 103
- 168

dain
- 6,475
- 1
- 38
- 47
-
1As an absolute beginner REST Console and Postman are pretty heavy for me but I've picked up Dev HTTP Client in about 20/30 minutes. Thank you very much!!!!! – fIwJlxSzApHEZIl Oct 23 '13 at 22:48
-
2ModHeader is nice and simple to use, also: https://chrome.google.com/webstore/detail/modheader/idgpnmonknjnojddfkpgkljpfnnfcklj – Simon East Jul 10 '14 at 04:39
-
-
2@DanDascalescu You can try Requestly - http://bit.ly/requestly-chrome-store. This is open source and I have tried my best to keep the UI simple. – Sachin Jain Jan 14 '15 at 05:07
-
1
-
Just an update, Requestly is also available on Firefox. Download at http://requestly.in – Sachin Jain Dec 20 '16 at 16:18
-1
You can add/modify/delete headers site wise by using this tool called netspanner.
Netspanner-Modify Request Headers for Chrome.
https://chrome.google.com/webstore/detail/net-spanner/jlgbkimmjlnlenacfaclmmoaooicldnn

Aman
- 1
-
Please add some more details, Link may help but other details will give user more idea about your answer. – Nilesh Mar 07 '15 at 06:23
-3
Use the WebRequest API.
This was recently asked in another SO post.

Community
- 1
- 1

Boris Smus
- 8,220
- 2
- 36
- 33
-
1Thanks! That means I have to write my own extension or get hold of one outside the typical distribution channels. That's a good little project I guess, but I was hoping for something ready made. – Knut Forkalsrud Aug 19 '11 at 00:36
-
1The webRequest API is no longer experimental, and can now be found at: http://developer.chrome.com/extensions/webRequest.html – svjson Nov 12 '13 at 12:47
-
Can you add an example of how to use the WebRequest API? Is it something that can be easily used from the console? – Dan Dascalescu Jan 05 '15 at 19:40
-
@DanDascalescu If you want to look at the example of how to use webRequest API, you can see here https://github.com/blunderboy/requestly/blob/master/src/background/background.js#L148 – Sachin Jain Jan 14 '15 at 05:11
-
4
-