Whenever a user clicks on a banner's close button, we trigger background requests to Special:HideBanners to set "close" cookies on a bunch of domains. This prevents a banner that was closed on one WMF domain from showing up again if the user visits other WMF domains.
However, this generates a lot of requests. Let's look into other ways of achieving the same functionality. For example, maybe we could set close cookies on a single domain, and use CORS to read that cookie from all domains. Determine if this is an option, and what other options may exist.