我经常需要在firefox的标签页中打开~40-50个链接。
我正在为此编写用户脚本,但有问题。 Firefox默默地不允许打开超过20个选项卡。有没有办法绕过这个限制?它是供个人使用的,所以如果可以帮助我可以更改浏览器设置。
我有这样的代码:
$(document).ready(function(){
if ($("article").length > 19)
{
alert($("article").length);
// show me 40, all elements have the same structure
$("article").each(function() {
$(this).find("a").each(function(){
window.open($(this).attr("href"));
// open only 20 tabs, no errors in console.
})
});
}
});
答案 0 :(得分:1)
您可以更改about:config
部分中允许的标签数量。
about:config
。pop
dom.popup_maximum
,双击它,然后编辑所需数量的标签。