我想要一个重定向所有请求的扩展程序:
http://website.com/foo.js
为:
http://localhost/myfoo.js
我无法使用hosts文件编辑从website.com到localhost的主机,因为我只想将重定向应用于foo.js。
我尝试使用此扩展程序:
https://addons.mozilla.org/en-US/firefox/addon/redirector/
但只有在地址栏中输入http://website.com/foo.js
时才会有效,我希望它能将想要访问此链接的任何内容重定向到我的localhost版本。
例如,如果http://website.com/bar.html
使用http://website.com/foo.js
,那么我希望它改为使用http://localhost/myfoo.js
。
答案 0 :(得分:0)
您可以使用request-redirect
模块执行此操作,此代码:
let { Redirect } = require("request-redirect");
Redirect({ from: "http://website.com/foo.js", to: "http://localhost/myfoo.js" });
有关开始构建加载项see this documentation的详细信息。