<p><b>Note</b>: Changing browser settings on TBB is not recommended by some, as they argue it is bad because it increases fingerprinting. Please also note that this is SpywareWatchdog, and not FingerprintWatchdog.</p>
<br/>
<p>After following this guide the rating changes thusly:</p>
<p> Besides using the torrc configuration file, or host files, the only way to completely remove the connections is to unpack two omni.ja files, and remove all the addresses, and then re-zip the omni.ja files.</p>
<br/>
<p>Find your omni.ja files:</p>
<codeclass="big-code">
find . -name omni.ja
</code>
<p>Unpack them (do this for both of them separately):</p>
<codeclass="big-code">
mkdir unpack
<br/>
mv omni.ja unpack
<br/>
cd unpack
<br/>
unzip omni.ja
</code>
<p>Remove telementry:</p>
<codeclass="big-code">
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main\/collections\/nimbus-desktop-experiments\/records//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main-preview\/collections\/search-config\/records//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1\/buckets\/main\/collections\/search-config\/records//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/https\:\/\/firefox\.settings\.services\.mozilla\.com\/v1//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/onecrl\.content-signature\.mozilla\.org//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/remote-settings\.content-signature\.mozilla\.org//g';
<br/>
find ./Browser/ -type f -print0 | xargs -0 sed -i 's/normandy\.content-signature\.mozilla\.org//g';
</code>
<p>Replace the omni.ja files:</p>
<codeclass="big-code">
mv omni.ja back.omni.ja
<br/>
zip -0DXqr omni.ja *
<br/>
mv omni.ja ..
</code>
<p>Disable auto updates:</p>
<codeclass="big-code">
mkdir -p Browser/distribution/
</code>
<p>Create file <code>Browser/distribution/policies.json</code> and put in:</p>
<p>If you want to edit this article, or contribute your own article(s), visit us at the git repo on <ahref="https://codeberg.org/shadow/SpywareWatchdog">Codeberg</a>. All contributions must be licensed under the CC0 license to be accepted.