cliff_barr / Notch

// ==UserScript==
// @name     Notch
// @version  1.0.0
// @grant    none
// @license MIT
// ==/UserScript==

const notch = document.createElement('div');
notch.classList.add('notch');

const styles = `
  height: 30px;
  background: black;
  border-radius: 0 0 60px 60px;
  position: fixed;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  min-width: 100px;
  width: 75vw;
  min-height: 75px;
  height: 10vh;
  z-index: 6966669;
`;

notch.setAttribute('style', styles);

document.body.appendChild(notch);