Last active
September 25, 2023 10:55
-
-
Save RoxasShadow/8fb1832d35480a4782b0e3e8cdd29ccf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--uc-bg-color: #1a1e26; | |
--uc-show-new-tab-button: none; | |
--uc-show-tab-separators: none; | |
--uc-tab-separators-color: none; | |
--uc-tab-separators-width: none; | |
--uc-tab-fg-color: #fff; | |
} | |
#titlebar { | |
-moz-box-ordinal-group: 2 !important; | |
} | |
#nav-bar { | |
margin-left: 3vw !important; | |
} | |
#nav-bar-customization-target { | |
margin-left: 25px !important; | |
} | |
.titlebar-buttonbox-container { | |
background-color: rgb(50, 50, 52); | |
margin-top: -80px !important; | |
/* enable on windows for close btn */ | |
margin-top: 0 !important; | |
position: fixed; | |
display: block; | |
left: -95px; | |
z-index: 1; | |
margin-top: 7px !important; | |
} | |
.tab-close-button.close-icon { /* remove on windows for close btn */ | |
display: none !important; | |
} | |
.tabbrowser-tab:hover .tab-close-button.close-icon { /* remove on windows for close btn */ | |
display: block !important; | |
} | |
#TabsToolbar { | |
min-height: 28px !important; | |
} | |
#TabsToolbar > .toolbar-items { | |
margin-left: -66px !important; /* 0px on windows */ | |
} | |
.tabbrowser-tab:not([pinned]) { | |
max-width: 100vw !important; | |
} | |
.tabbrowser-tab:not([fadein]), | |
.titlebar-spacer, | |
.tab-line, | |
#tracking-protection-icon-container, | |
#identity-box { | |
display: none !important; | |
border: none !important; | |
} | |
#urlbar-background, | |
.titlebar-buttonbox-container, | |
#nav-bar, | |
.tabbrowser-tab:not([selected]) .tab-background { | |
background: var(--uc-bg-color) !important; | |
border: none !important; | |
} | |
#urlbar[breakout][breakout-extend] { | |
top: calc( | |
(var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2 | |
) !important; | |
left: 0 !important; | |
width: 100% !important; | |
} | |
#urlbar[breakout][breakout-extend] > #urlbar-input-container { | |
height: var(--urlbar-height) !important; | |
padding-block: 0 !important; | |
padding-inline: 0 !important; | |
} | |
#urlbar[breakout][breakout-extend] > #urlbar-background { | |
animation-name: none !important; | |
box-shadow: none !important; | |
} | |
#urlbar-background { | |
box-shadow: none !important; | |
} | |
.tabbrowser-tab::after { | |
border-left: var(--uc-tab-separators-width) solid | |
var(--uc-tab-separators-color) !important; | |
display: var(--uc-show-tab-separators) !important; | |
} | |
.tabbrowser-tab[first-visible-tab][last-visible-tab] { | |
background-color: var(--uc-bar-bg-color) !important; | |
} | |
#urlbar-input { | |
text-align: center !important; | |
margin-left: 3px !important; | |
} | |
#urlbar-input:focus { | |
text-align: left !important; | |
} | |
#urlbar-container { | |
margin-left: 3vw !important; | |
} | |
.tab-text.tab-label { | |
color: var(--uc-tab-fg-color) !important; | |
} | |
#navigator-toolbox { | |
border-bottom: 0px solid red !important; | |
background: var(--uc-bg-color) !important; | |
} | |
/* Hide tabs */ | |
#TabsToolbar{ visibility: collapse !important } | |
/* Hide tabs - enable on windows */ | |
#titlebar { | |
-moz-box-ordinal-group: initial !important; | |
} | |
:root[tabsintitlebar]{ --uc-toolbar-height: 40px; } | |
:root[tabsintitlebar][uidensity="compact"]{ --uc-toolbar-height: 32px } | |
:root[sizemode="fullscreen"] #TabsToolbar > :is(#window-controls,.titlebar-buttonbox-container){ | |
visibility: visible !important; | |
z-index: 2; | |
float: left; | |
} | |
:root:not([inFullscreen]) #nav-bar{ | |
margin-top: calc(0px - var(--uc-toolbar-height,0px)); | |
} | |
:root[tabsintitlebar] #toolbar-menubar[autohide="true"]{ | |
min-height: unset !important; | |
height: var(--uc-toolbar-height,0px) !important; | |
position: relative; | |
} | |
#toolbar-menubar[autohide="false"]{ | |
margin-bottom: var(--uc-toolbar-height,0px) | |
} | |
:root[tabsintitlebar] #toolbar-menubar[autohide="true"] #main-menubar{ | |
-moz-box-flex: 1; | |
-moz-box-align: stretch; | |
background-color: var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor); | |
background-clip: padding-box; | |
border-right: 30px solid transparent; | |
border-image: linear-gradient(to left, transparent, var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor) 30px) 20 / 30px | |
} | |
#toolbar-menubar:not([inactive]){ z-index: 2 } | |
#toolbar-menubar[autohide="true"][inactive] > #menubar-items { | |
opacity: 0; | |
pointer-events: none; | |
margin-left: var(--uc-window-drag-space-pre,0px) | |
} | |
/* Auto hide sidebar */ | |
#sidebar-box { | |
--sidebar-hover-width: 30px; | |
position: relative !important; | |
overflow-x: hidden !important; | |
/* margin-right: calc(var(--sidebar-hover-width) * -1) !important; */ | |
margin-right: 0 !important; | |
min-width: var(--sidebar-hover-width) !important; | |
max-width: var(--sidebar-hover-width) !important; | |
border-right: 1px solid var(--sidebar-border-color); | |
z-index:2147483647 !important; | |
transition: all 0.25s; | |
} | |
#sidebar-box:hover { | |
--sidebar-visible-width: 250px; | |
margin-right: calc(var(--sidebar-visible-width) * -1) !important; | |
min-width: var(--sidebar-visible-width) !important; | |
max-width: var(--sidebar-visible-width) !important; | |
transition: all 0.25s; | |
} | |
#sidebar, #sidebar-box:hover #sidebar { | |
opacity: 1 !important; | |
} | |
#sidebar-header { | |
visibility: collapse !important; | |
} | |
#sidebar-splitter { | |
display: none; | |
} |
//
/* You may copy+paste this file and use it as it is.
*
* If you make changes to your about:config while the program is running, the
* changes will be overwritten by the user.js when the application restarts.
*
* To make lasting changes to preferences, you will have to edit the user.js.
*/
/****************************************************************************
* Betterfox *
* "Ad meliora" *
* version: 117 *
* url: https://github.com/yokoffing/Betterfox *
****************************************************************************/
/****************************************************************************
* SECTION: FASTFOX *
****************************************************************************/
user_pref("nglayout.initialpaint.delay", 0);
user_pref("nglayout.initialpaint.delay_in_oopif", 0);
user_pref("content.notify.interval", 100000);
/** EXPERIMENTAL ***/
user_pref("layout.css.grid-template-masonry-value.enabled", true);
user_pref("dom.enable_web_task_scheduling", true);
user_pref("layout.css.has-selector.enabled", true);
user_pref("dom.security.sanitizer.enabled", true);
/** GFX ***/
//user_pref("gfx.canvas.accelerated", true); // enable if using a dedicated GPU on WINDOWS
user_pref("gfx.canvas.accelerated.cache-items", 4096);
user_pref("gfx.canvas.accelerated.cache-size", 512);
user_pref("gfx.content.skia-font-cache-size", 20);
/** BROWSER CACHE ***/
user_pref("browser.cache.disk.enable", false);
/** MEDIA CACHE ***/
user_pref("media.memory_cache_max_size", 65536);
user_pref("media.cache_readahead_limit", 7200);
user_pref("media.cache_resume_threshold", 3600);
/** IMAGE CACHE ***/
user_pref("image.mem.decode_bytes_at_a_time", 32768);
/** NETWORK ***/
user_pref("network.buffer.cache.size", 262144);
user_pref("network.buffer.cache.count", 128);
user_pref("network.http.max-connections", 1800);
user_pref("network.http.max-persistent-connections-per-server", 10);
user_pref("network.http.max-urgent-start-excessive-connections-per-host", 5);
user_pref("network.http.pacing.requests.enabled", false);
user_pref("network.dnsCacheEntries", 1000);
user_pref("network.dnsCacheExpiration", 86400);
user_pref("network.dns.max_high_priority_threads", 8);
user_pref("network.ssl_tokens_cache_capacity", 10240);
/** SPECULATIVE CONNECTIONS ***/
// user_pref("network.http.speculative-parallel-limit", 0);
// user_pref("network.dns.disablePrefetch", true);
// user_pref("browser.urlbar.speculativeConnect.enabled", false);
// user_pref("browser.places.speculativeConnect.enabled", false);
// user_pref("network.prefetch-next", false);
// user_pref("network.predictor.enabled", false);
// user_pref("network.predictor.enable-prefetch", false);
/****************************************************************************
* SECTION: SECUREFOX *
****************************************************************************/
/** TRACKING PROTECTION ***/
// user_pref("browser.contentblocking.category", "strict");
user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com");
user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
user_pref("browser.uitour.enabled", false);
user_pref("privacy.globalprivacycontrol.enabled", true);
user_pref("privacy.globalprivacycontrol.functionality.enabled", true);
/** OCSP & CERTS / HPKP ***/
user_pref("security.OCSP.enabled", 0);
user_pref("security.remote_settings.crlite_filters.enabled", true);
user_pref("security.pki.crlite_mode", 2);
user_pref("security.cert_pinning.enforcement_level", 2);
/** SSL / TLS ***/
user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true);
user_pref("browser.xul.error_pages.expert_bad_cert", true);
user_pref("security.tls.enable_0rtt_data", false);
/** DISK AVOIDANCE ***/
user_pref("browser.privatebrowsing.forceMediaMemoryCache", true);
user_pref("browser.sessionstore.interval", 60000);
/** SHUTDOWN & SANITIZING ***/
// user_pref("privacy.history.custom", true);
/** SEARCH / URL BAR ***/
// user_pref("browser.search.separatePrivateDefault.ui.enabled", true);
// user_pref("browser.urlbar.update2.engineAliasRefresh", true);
// user_pref("browser.search.suggest.enabled", false);
user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false);
// user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false);
// user_pref("browser.formfill.enable", false);
// user_pref("security.insecure_connection_text.enabled", true);
// user_pref("security.insecure_connection_text.pbmode.enabled", true);
// user_pref("network.IDN_show_punycode", true);
/** HTTPS-FIRST POLICY ***/
user_pref("dom.security.https_first", true);
/** PASSWORDS AND AUTOFILL ***/
// user_pref("signon.rememberSignons", false);
// user_pref("editor.truncate_user_pastes", false);
/** ADDRESS + CREDIT CARD MANAGER ***/
// user_pref("extensions.formautofill.addresses.enabled", false);
// user_pref("extensions.formautofill.creditCards.enabled", false);
/** MIXED CONTENT + CROSS-SITE ***/
// user_pref("network.auth.subresource-http-auth-allow", 1);
// user_pref("security.mixed_content.block_display_content", true);
// user_pref("pdfjs.enableScripting", false);
// user_pref("extensions.postDownloadThirdPartyPrompt", false);
// user_pref("permissions.delegation.enabled", false);
/** HEADERS / REFERERS ***/
user_pref("network.http.referer.XOriginTrimmingPolicy", 2);
/** CONTAINERS ***/
user_pref("privacy.userContext.ui.enabled", true);
/** WEBRTC ***/
user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true);
user_pref("media.peerconnection.ice.default_address_only", true);
/** SAFE BROWSING ***/
// user_pref("browser.safebrowsing.downloads.remote.enabled", false);
/** MOZILLA ***/
// user_pref("accessibility.force_disabled", 1);
// user_pref("identity.fxaccounts.enabled", false);
// user_pref("browser.tabs.firefox-view", false);
// user_pref("permissions.default.desktop-notification", 2);
user_pref("permissions.default.geo", 2);
user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%");
user_pref("permissions.manager.defaultsUrl", "");
// user_pref("webchannel.allowObject.urlWhitelist", "");
/** TELEMETRY ***/
user_pref("toolkit.telemetry.unified", false);
user_pref("toolkit.telemetry.enabled", false);
user_pref("toolkit.telemetry.server", "data:,");
user_pref("toolkit.telemetry.archive.enabled", false);
user_pref("toolkit.telemetry.newProfilePing.enabled", false);
user_pref("toolkit.telemetry.shutdownPingSender.enabled", false);
user_pref("toolkit.telemetry.updatePing.enabled", false);
user_pref("toolkit.telemetry.bhrPing.enabled", false);
user_pref("toolkit.telemetry.firstShutdownPing.enabled", false);
user_pref("toolkit.telemetry.coverage.opt-out", true);
user_pref("toolkit.coverage.opt-out", true);
user_pref("datareporting.healthreport.uploadEnabled", false);
user_pref("datareporting.policy.dataSubmissionEnabled", false);
user_pref("app.shield.optoutstudies.enabled", false);
user_pref("browser.discovery.enabled", false);
user_pref("breakpad.reportURL", "");
user_pref("browser.tabs.crashReporting.sendReport", false);
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
user_pref("captivedetect.canonicalURL", "");
user_pref("network.captive-portal-service.enabled", false);
user_pref("network.connectivity-service.enabled", false);
user_pref("app.normandy.enabled", false);
user_pref("app.normandy.api_url", "");
user_pref("browser.ping-centre.telemetry", false);
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
user_pref("browser.newtabpage.activity-stream.telemetry", false);
/****************************************************************************
* SECTION: PESKYFOX *
****************************************************************************/
/** MOZILLA UI ***/
user_pref("layout.css.prefers-color-scheme.content-override", 2);
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
user_pref("app.update.suppressPrompts", true);
user_pref("browser.compactmode.show", true);
user_pref("browser.privatebrowsing.vpnpromourl", "");
user_pref("extensions.getAddons.showPane", false);
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
user_pref("browser.shell.checkDefaultBrowser", false);
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
user_pref("browser.preferences.moreFromMozilla", false);
user_pref("browser.tabs.tabmanager.enabled", false);
user_pref("browser.aboutConfig.showWarning", false);
user_pref("browser.aboutwelcome.enabled", false);
user_pref("browser.display.focus_ring_on_anything", true);
user_pref("browser.display.focus_ring_style", 0);
user_pref("browser.display.focus_ring_width", 0);
user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
user_pref("cookiebanners.service.mode", 2);
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
user_pref("browser.translations.enable", true);
/** FULLSCREEN ***/
user_pref("full-screen-api.transition-duration.enter", "0 0");
user_pref("full-screen-api.transition-duration.leave", "0 0");
user_pref("full-screen-api.warning.delay", -1);
user_pref("full-screen-api.warning.timeout", 0);
/** URL BAR ***/
user_pref("browser.urlbar.suggest.engines", false);
user_pref("browser.urlbar.suggest.topsites", false);
user_pref("browser.urlbar.suggest.calculator", true);
user_pref("browser.urlbar.unitConversion.enabled", true);
/** NEW TAB PAGE ***/
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false);
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false);
/*** POCKET ***/
user_pref("extensions.pocket.enabled", false);
/** DOWNLOADS ***/
user_pref("browser.download.useDownloadDir", false);
user_pref("browser.download.always_ask_before_handling_new_types", true);
user_pref("browser.download.alwaysOpenPanel", false);
user_pref("browser.download.manager.addToRecentDocs", false);
/** PDF ***/
user_pref("browser.download.open_pdf_attachments_inline", true);
user_pref("pdfjs.sidebarViewOnLoad", 2);
/** TAB BEHAVIOR ***/
user_pref("browser.tabs.loadBookmarksInTabs", true);
user_pref("browser.bookmarks.openInTabClosesMenu", false);
user_pref("browser.menu.showViewImageInfo", true);
user_pref("findbar.highlightAll", true);
/****************************************************************************
* SECTION: SMOOTHFOX *
****************************************************************************/
// visit https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js
// Enter your scrolling prefs below this line:
/****************************************************************************
* START: MY OVERRIDES *
****************************************************************************/
// Enter your personal prefs below this line:
/****************************************************************************
* END: BETTERFOX *
****************************************************************************/
{
"timeStamp": 1695639290375,
"version": "1.52.0",
"userSettings": {
"cloudStorageEnabled": true,
"externalLists": "https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/raw/main/bpc-paywall-filter.txt\nhttps://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt\nhttps://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/personal.txt\nhttps://raw.githubusercontent.com/iam-py-test/uBlock-combo/main/list.txt\nhttps://raw.githubusercontent.com/liamengland1/miscfilters/master/antipaywall.txt\nhttps://raw.githubusercontent.com/yokoffing/filterlists/main/annoyance_list.txt\nhttps://raw.githubusercontent.com/yokoffing/filterlists/main/click2load.txt\nhttps://raw.githubusercontent.com/yokoffing/filterlists/main/youtube_clear_view.txt",
"importedLists": [
"https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/raw/main/bpc-paywall-filter.txt",
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt",
"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/personal.txt",
"https://raw.githubusercontent.com/iam-py-test/uBlock-combo/main/list.txt",
"https://raw.githubusercontent.com/liamengland1/miscfilters/master/antipaywall.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/annoyance_list.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/click2load.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/youtube_clear_view.txt"
]
},
"selectedFilterLists": [
"user-filters",
"ublock-filters",
"ublock-badware",
"ublock-privacy",
"ublock-quick-fixes",
"ublock-unbreak",
"easylist",
"easyprivacy",
"urlhaus-1",
"plowe-0",
"easylist-chat",
"easylist-newsletters",
"easylist-notifications",
"easylist-annoyances",
"fanboy-social",
"fanboy-cookiemonster",
"ublock-cookies-easylist",
"ublock-annoyances",
"ITA-0",
"https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/annoyance_list.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/click2load.txt",
"https://raw.githubusercontent.com/yokoffing/filterlists/main/youtube_clear_view.txt",
"https://raw.githubusercontent.com/liamengland1/miscfilters/master/antipaywall.txt",
"https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/raw/main/bpc-paywall-filter.txt",
"https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/personal.txt",
"https://raw.githubusercontent.com/iam-py-test/uBlock-combo/main/list.txt"
],
"hiddenSettings": {},
"whitelist": [
"about-scheme",
"chrome-extension-scheme",
"chrome-scheme",
"edge-scheme",
"moz-extension-scheme",
"opera-scheme",
"vivaldi-scheme",
"wyciwyg-scheme"
],
"dynamicFilteringString": "behind-the-scene * * noop\nbehind-the-scene * inline-script noop\nbehind-the-scene * 1p-script noop\nbehind-the-scene * 3p-script noop\nbehind-the-scene * 3p-frame noop\nbehind-the-scene * image noop\nbehind-the-scene * 3p noop",
"urlFilteringString": "",
"hostnameSwitchesString": "no-large-media: behind-the-scene false\nno-csp-reports: * true",
"userFilters": ""
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tldr mac