Remove Dropbox Popup

Hide the annoying Dropbox resubscribing notification popup for free plan users.

  1. // ==UserScript==
  2. // @name Remove Dropbox Popup
  3. // @namespace Violentmonkey Scripts
  4. // @version 0.1.1
  5. // @description Hide the annoying Dropbox resubscribing notification popup for free plan users.
  6. // @author HAL
  7. // @match *://*.dropbox.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict";
  14.  
  15. const style = document.createElement("style");
  16. style.textContent = `
  17. .ReactModalPortal {
  18. display: none !important;
  19. }
  20. `;
  21. document.head.appendChild(style);
  22. })();