关于Firefox的锚点链接:config?

时间:2013-06-10 07:20:14

标签: html firefox web-applications anchor uninstall

卸载网络应用的the single way I found是转到about:apps页面,我想编写以下代码:

 <p>To uninstall the webapp, please go to 
 <a href="about:apps">about:apps</a></p>

但是,在Firefox v21上它不会打开任何页面。

然后,我也使用了about:config。

 <a href="about:config">about:config</a>

因此我想知道是否可以提供关于:apps或about:config的超文本链接...您对此问题有什么建议?


编辑: document.location没有帮助

<html>
<body>
<script type="text/javascript">

//document.location = 'http://www.mozilla.org';
// -> OK 

  document.location = 'about:config';
  // -> Error: Access to 'about:config' from script denied
</script>

1 个答案:

答案 0 :(得分:3)

我认为由于安全问题,很简单,不允许插入本地资源的链接。