Mozilla firefox附加组件将URL从一个域名重定向到另一个域而不更改完整的URL

时间:2015-09-14 12:46:52

标签: firefox

我想知道在mozilla firefox中是否有重定向url的附加组件。在Google Chrome中,有一个加载项<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <table id="tab"> <thead> <tr> <th><a href="#" class="sort asc">IsReserved</a></th> <th><a href="#" class="sort asc">Caption</a></th> <th><a href="#" class="sort asc">Other</a></th> </tr> </thead> <tr><td><input type="checkbox" /></td><td>One</td><td>1</td></tr> <tr><td><input type="checkbox" checked /></td><td>Two</td><td>2</td></tr> <tr><td><input type="checkbox" /></td><td>Three</td><td>3</td></tr> <tr><td><input type="checkbox" checked /></td><td>Four</td><td>4</td></tr> <tbody> </tbody> </table>。我需要在mozilla firefox中使用这样的url切换器。我已经尝试过使用mozilla的重定向url附加组件。但它没有正确重定向。

要求:

我需要测试localhost门户页面。但在极少数地方,开发环境网址是硬编码的。我想将这些网址重定向到localhost,以测试我在本地创建的更改。

例如重定向:

Switcheroo

应重定向到

protocol://dev_hostname:dev_portnubmer/wps/portal/abcd/xyz/u!/abcd

对于google chrome switcheroo插件中的这种重定向,我配置如下: - http://dev_hostname:dev_portnubmer ---&gt; http://localhost:localhostPortnumber。附加组件更改协议,域名,端口号。它没有改变url部分的其余部分。它的运作与我预期的一样好。但是在Mozilla中我需要一个这样的插件。

2 个答案:

答案 0 :(得分:3)

您可以使用Requestly扩展名,该扩展名可用于Chrome和Firefox。它具有替换与给定文本或模式匹配的URL部分的功能,而不是完全重定向到另一个URL,这基本上是Switcheroo的功能。它还具有其他功能。

对于您的特定用例,您可以按照以下步骤操作-

  1. 安装Requestly
  2. 点击地址栏中的r图标
  3. 单击(+)绿色图标以创建新规则
  4. 选择Replace Rule
  5. dev_hostname:dev_portnubmer替换为localhost:localhostPortnumber
  6. 保存

立即测试您的应用。

答案 1 :(得分:1)

mozilla有一个附加组件可以重定向网址,重定向器

我已经阅读了重定向器附加组件提供的帮助,他们已经清楚地解释了它的用法。