使用 Greasemonkey 禁用页面重定向

发布于 2024-09-03 13:40:31 字数 653 浏览 5 评论 0原文

我希望调整的网站正在使用 window.location 将特定用户重定向到阻止页面。该网站是在普通

有没有其他方法可以将我的代码注入到页面而不使用 Firefox 扩展(例如 NoScript)?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <script type="text/javascript">
    if (1)  window.location="http://example.net"
  </script>
</head>
<body></body>
</html>

A website I wish to tweak is using window.location in order to redirect specific users to a blocking page. That website is doing it in plain <script> tag, so it is impossible to bypass it by overriding the onload event using document.body.setAttribute('onload','');.

Is there another way to inject my code to the page without using Firefox extensions such as NoScript?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <script type="text/javascript">
    if (1)  window.location="http://example.net"
  </script>
</head>
<body></body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月寒剑心 2024-09-10 13:40:31

这个问题被标记为“Greasemonkey”,但 GM 无法/不会在重定向脚本触发之前运行您的脚本。你必须编写一个 Firefox 插件才能做到这一点。可能会浏览 https://addons.mozilla.org/en-US/firefox/

有时您可以使用 adblock 来停止加载有问题的脚本。

如果网站无需 javascript 即可使用,NoScript 可能是最具成本效益的方式(尽管 GM javascript 仍将运行——因此您可能可以用 GM 代码替换丢失的功能)。

这个问题似乎与这个问题相关。

This question is tagged "Greasemonkey", but GM cannot/will-not run your script before the redirect script fires. You'd have to write a firefox add-on to do that. Might poke around https://addons.mozilla.org/en-US/firefox/ first.

Sometimes you can use adblock to stop the load of the offending script.

NoScript might be the most cost-effective way, if the site's usable without javascript (although GM javascript will still run -- so you could replace lost functionality with GM code, maybe).

This question appears to be related to this one.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文