oli*_*bre 6 html anchor firefox web-applications uninstall
作为单路,我发现卸载web应用程序是去约:应用程序页面,我需要编写如下:
<p>To uninstall the webapp, please go to
<a href="about:apps">about:apps</a></p>
Run Code Online (Sandbox Code Playgroud)
但是,在Firefox v21上它不会打开任何页面.
然后,我也失败了使用about:config.
<a href="about:config">about:config</a>
Run Code Online (Sandbox Code Playgroud)
因此,我想知道是否有可能提供关于: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>
Run Code Online (Sandbox Code Playgroud)