举个例子,当我点击 Google 搜索结果中的链接时,我希望它们默认在新标签页中打开(应该适用于每个网站)
我可以在 about:config 中更改任何内容吗?
我使用的是 Firefox 版本 32.0.3
谢谢。
答案1
我的建议是Tab Mix Plus
控制哪些操作将打开新选项卡,以及新选项卡是否获得焦点(选择)从中打开选项卡:
Bookmarks
Groups of bookmarks
When checked "Open All in Tabs" will open the bookmarks in new tabs, when unchecked the bookmarks will replace all tabs that are not locked or protected.
History
Address bar
Search bar
Middle-click or Control-click opens items in current tab
Only for bookmarks, history, links forced to open in new tab
聚焦/选择通过以下操作打开的选项卡:
Links
Diverted windows
Other applications
New tab commands
Duplicate Tab
Address bar
Search bar
Context menu search for
Bookmarks/History
Groups of bookmarks
通过以下操作打开的选项卡的反向中键单击或 Control 单击焦点:
Links
Bookmarks/History, Address bar, Search bar
答案2
使用扩展如油脂猴,您可以添加一个包含一些 javascript 的新脚本。
// ==UserScript==
// @name All Links in New Tab
// @namespace *
// ==/UserScript==
(function(){
var script = document.createElement("script");
script.type = "application/javascript";
script.innerHTML = "$(function(){$('a').attr('target', '_blank');});";
document.body.appendChild(script);
})();
星号允许脚本在所有网站上运行。
答案3
Firefox 本身无法做到这一点,但是有各种插件。
我建议https://addons.mozilla.org/en-US/firefox/addon/open-link-in-new-tab/因为它有过滤器,所以你只能在特定域上启用它
答案4
Firefox:在新选项卡中打开搜索结果:http://www.tech-recipes.com/rx/2136/firefox_open_search_results_new_tab/
- 在 Firefox 中,在 URL 框中输入 about:config
- 在过滤框中粘贴以下文本:
浏览器.search.openintab
- 双击之前的“false”文本将值更改为 true。