Remove donation annoyance on archive.org

Stop attention stealing

// ==UserScript==
// @name        Remove donation annoyance on archive.org
// @namespace   Violentmonkey Scripts
// @match       https://*.archive.org/*
// @author      alopatindev
// @license     MIT
// @version     0.1
// @description Stop attention stealing
// @icon        https://www.google.com/s2/favicons?sz=64&domain=archive.org
// ==/UserScript==

(function() {
  'use strict';
  const container = document.querySelector('#donate_banner');
  if (container) {
    container.parentNode.removeChild(container);
  }
})()