在 Chrome 中重写所有网络请求

在 Chrome 中重写所有网络请求

我想重写 Chrome 中的所有 Web 请求,包括 js/css 包含和 ajax 请求。例如:

change http://foo.com/index.htm
to http://bar.com?url=http://foo.com/index.htm

我曾尝试使用 chrome 的 xrewrite 扩展,但是它似乎以递归方式运行,因此我最终得到了一个类似于下面的 url,但具有更多的递归:

http://bar.com?url=http://bar.com?url=http://bar.com?url=http://foo.com/index.htm

相关内容