Donmai

URL started adding &z=1 in the end

Posted under General

All telemetry is internally consumed, we don't send data to anyone else. If you don't want your usage of the site to be tracked you shouldn't be using danbooru at all, because anyone with access to the servers can see every single page you visit. This applies to every site.

Nameless_Contributor said:

Explanation

You can use this small userscript:

// ==UserScript==
// @name        Danbooru remove z=N URL param
// @match       *://*.donmai.us/*
// @version     0.1
// @author      Nameless Contributor
// @run-at      document-start
// ==/UserScript==

const params = new URLSearchParams(location.search);
if (params.has('z')) {
  params.delete('z');
  location.search = params.toString();
}

Or add this to your uBlock filters:

||danbooru.donmai.us^$removeparam=z

The first option doesn't interfere with Danbooru getting statistics about clicks but takes marginally longer to load.

uBlock solution worked, Thank you.

1