Greasy Fork is available in English.

Clean Transfer.sh

Clear the message at the bottom, we get it already transfer.sh is staying

  1. /* globals jQuery, $ */
  2. // ==UserScript==
  3. // @name Clean Transfer.sh
  4. // @namespace spookyahell
  5. // @version 0.5.0
  6. // @description Clear the message at the bottom, we get it already transfer.sh is staying
  7. // @author spookyahell
  8. // @match https://transfer.sh
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. var elementfound = $("[style='position: fixed; top: 85%; left: 50%; transform: translate(-50%, -50%); background-color: yellow; padding: 20px 20px; z-index: 100;']");
  14. elementfound.remove();
  15. })();