Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tabs not rendered in titlebar #161

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion snowblocks/firefox/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ user_pref("accessibility.force_disabled", 1);
*/
user_pref("app.shield.optoutstudies.enabled", false);

/* Disable third-party API requests on new tab page for snippets widget. */
user_pref("browser.aboutHomeSnippets.updateUrl", "");

/*
* Always keep the bookmark menu open until it gets dismissed.
* By default, the bookmarks menu will close when opening a bookmark in a new tab.
Expand Down Expand Up @@ -97,6 +100,7 @@ user_pref("browser.link.open_newwindow", 3);

/*
* Use a minimal new tab page by disabling all additional elements except the seach bar.
* Also improves the privacy by removing requests against third-party APIs.
* Available within the UI under:
* Home > Firefox Home Content
*/
Expand All @@ -110,6 +114,7 @@ user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket",
user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
user_pref("browser.newtabpage.activity-stream.showSearch", true);
user_pref("browser.newtabpage.activity-stream.topSitesRows", 1);
user_pref("browser.newtabpage.directory.source", "");
user_pref("browser.newtabpage.enabled", true);

/*
Expand Down Expand Up @@ -196,7 +201,7 @@ user_pref("browser.startup.homepage", "about:home");
user_pref("browser.startup.page", 3);

/* Render tabs in the title bar. */
user_pref("browser.tabs.drawInTitlebar", false);
user_pref("browser.tabs.drawInTitlebar", true);

/*
* Always open bookmark tabs in the background.
Expand Down