搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Can't execute javascript via URL Bar

  • 2 个回答
  • 7 人有此问题
  • 7 次查看
  • 最后回复者为 cor-el

more options

https://support.mozilla.com/en-US/questions/871548 I suffer from this, the solution to use a bookmark works however I want to know how and what changes prevent the use of the URL Bar for such things.

Sometimes Firefox will respond to it being pasted in the URL Bar and sometimes it won't. there does not seem to be any logic behind it hence my question.

Edit: and just for the sake of it, not really important but how do you make mailto links always open in a new tab?

https://support.mozilla.com/en-US/questions/871548 I suffer from this, the solution to use a bookmark works however I want to know how and what changes prevent the use of the URL Bar for such things. Sometimes Firefox will respond to it being pasted in the URL Bar and sometimes it won't. there does not seem to be any logic behind it hence my question. Edit: and just for the sake of it, not really important but how do you make mailto links always open in a new tab?

由Franpa于修改

被采纳的解决方案

Javascript runs with different levels of acces rights. When you type something in the URLbar, it get no access rights (Null principal - starting in Firefox 6 see question 876916), so you can do almost nothing. A bookmarklet runs with page access rights, so it can do more like alert("hello") etc. Javascript that runs inside an add-on has maximum power and can do everything "chrome privileges".

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

Javascript runs with different levels of acces rights. When you type something in the URLbar, it get no access rights (Null principal - starting in Firefox 6 see question 876916), so you can do almost nothing. A bookmarklet runs with page access rights, so it can do more like alert("hello") etc. Javascript that runs inside an add-on has maximum power and can do everything "chrome privileges".

more options

You can use the Scratch pad (Firefox > Web Developer > Scratchpad; Shift+F4) to run JavaScript code (Ctrl+R).