Request Interceptor에 대한 리뷰
Request Interceptor 제작자: Vinay Kaparthi
리뷰 14개
- The author aimed to create a progressive interface, but it turned out to be a flop.
Also, after the last update of the plugin, it opens its settings tab every time I open Firefox. What I should do to prevent this from happening is not specified anywhere.
Otherwise, the plugin does its job. - 5점 만점에 5점Firefox 사용자 16896802 님, 2년 전Excelent to manage requests, creating controled data scenarios between user and server.
- 5점 만점에 3점Firefox 사용자 15797138 님, 3년 전It works ok-ish. The interface could be somewhat clearer on when to save and how to enable. Also it seems like localhost throttling doesn't work. It does work when calling directly through deelay.me though.
- 5점 만점에 5점Firefox 사용자 17266305 님, 3년 전
- 5점 만점에 5점Andrea Pascal 님, 4년 전Is source code available for this addon? The license is listed as BSD 2-clause.
- 5점 만점에 3점Nishant Desai 님, 4년 전this extension is not working for me on locally hosted webapps, is that expected?
I'm using a similar extension in Chromium and it works on localhost sites just fine.
Any help is greatly appreciated. - 5점 만점에 5점Firefox 사용자 16727644 님, 4년 전Very easy to use. I needed to test some feature flag behaviour when key APIs failed in a web application. My only suggestion would be to make it more evident that the add-on needs to be switched on. The button is hidden away in the corner.
- I want to partially replace the url, such as replacing fonts.googleapis.com in https://fonts.googleapis.com//css?family=Roboto:300,400,500,700|Google+Sans:400,500 with fonts.loli.net;
contains is not work.For example, I configured to include translate.google.cn to perform the replace, but the result did not match.but starts-with with https://translate.google.cn is working.
When Request's -> URL -> Matches(RegEx) -> (.*)fonts.googleapis.com(.*)
Actions -> RedirectTo -> ${1}fonts.loli.net${2}
Is better,tks개발자 답글
6년 전에 게시됨Configure the rule as below and give a try.
When Request's -> URL -> Matches(RegEx) -> https:\/\/fonts.googleapis.com\/(.*)
Actions -> RedirectTo -> https://fonts.loli.net/${1}