#!/bin/sh # # Download the 'BB_Mac_start.txt' file to your Mac Desktop. # # After you download the 'BB_Mac_start.txt' file, change its filename suffix to .sh # # BB_Mac_start.sh # # To run this script, open the Mac OS Terminal.app, and drag the icon of this # script (BB_Mac_start.sh), into the Terminal.app window. # # Then, the path to this script, will appear as if you had manually typed the # path. Next, tap the Enter / Return key. # # # About this script: # # This script will DISABLE Shields v2 and ENABLE Shields v1 (v1 has more # selective control). You may also/later change those settings, by searching # for them at: `brave:flags` in a Brave Browser > New Window. # # You certainly should examine the entire command and edit the command, as you # believe necessary. # # The particular switch of interest: # # --enable-features=NavigationThreadingOptimizations # # is found in an issue at GitHub: # # Many users experiencing extremely slow load times (or no loading at all) # #23267 # https://github.com/brave/brave-browser/issues/23267 # # Also see: # # Infinity load in random pages ( ⇦ Slow loading or No loading) # https://community.brave.com/t/infinity-load-in-random-pages-slow-loading-or-no-loading/398629/94 # # # # open -a "Brave Browser.app" -n --args --disable-client-side-phishing-detection --disable-domain-reliability --enable-dom-distiller --no-pings --component-updater=url-source=https://go-updater.brave.com/extensions --origin-trial-public-key=bYUKPJoPnCxeNvu72j4EmPuK7tr1PAC7SHh8ld9Mw3E=,fMS4mpO6buLQ/QMd+zJmxzty/VQ6B1EUZqoCU04zoRU= --sync-url=https://sync-v2.brave.com/v2 --lso-url=https://no-thanks.invalid --variations-server-url=https://variations.brave.com/seed --variations-insecure-server-url=https://variations.brave.com/seed --enable-features=NavigationThreadingOptimizations --flag-switches-begin --enable-features=BraveShieldsPanelV1 --disable-features=BraveShieldsPanelV2 --flag-switches-end # # # #