使用 Greasemonkey 禁用页面重定向
我希望调整的网站正在使用 window.location 将特定用户重定向到阻止页面。该网站是在普通 标记中执行此操作,因此不可能通过使用
document.body.setAttribute('onload',''); 覆盖 onload 事件来绕过它。
。
有没有其他方法可以将我的代码注入到页面而不使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题被标记为“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.