当我在 Firefox 中设置多个主页时,单击主页按钮时,我会同时获得两个/所有页面

当我在 Firefox 中设置多个主页时,单击主页按钮时,我会同时获得两个/所有页面

当我设置多个主页时,单击主页按钮时,所有页面都设置为主页。我已将主页设置为 www.google.co.in/|www.gmail.com。启动时它运行良好。它会打开两个网站,但当我单击主页按钮时,它也会打开两个网站。在 Chrome 中不是这样。它在启动时会打开两个页面,但单击主页按钮时只会打开 1 个页面。如何在 Firefox 中实现这一点?

答案1

Chrome 可以选择打开特定的页面集启动时。这与设置为主页的页面不同。

Firefox 在启动时以及单击主页按钮时都会打开设置为主页的页面。Google Chrome 中没有这种区别。

我查看了你可以添加的设置用户.js,并没有发现任何有希望的东西。我认为它们都在这里:关于:配置

大胆建议:制作您自己的本地页面来实现多标签效果,并将 FF 设置为以此页面启动:

<!--    This file can reside locally. 
        Note sure if that works, but there's always Stack Overflow.
        http://stackoverflow.com/questions/13295213/jquery-mobile-automatically-open-url-in-new-tab
        http://stackoverflow.com/questions/503093/how-can-i-make-a-redirect-page-in-jquery-javascript
-->
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
    <script type="text/javascript">
        $(document).ready(function() {
            setTimeout(function() { 
                window.open("http://rads.stackoverflow.com/amzn/click/0307266567");
                window.location.replace("https://kiva.org");
            }, 1);
        });
    </script>
</body>
</html>

相关内容