Advertisement
Guest User

Untitled

a guest
Apr 10th, 2025
1,393
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 2 0
  1. // ==UserScript==
  2. // @name Re-add Download Button Vimm's Lair
  3. // @version 1.2
  4. // @description Grabs the mediaId and re-adds the download button only on pages that have them removed
  5. // @author anonymous
  6. // @match https://vimm.net/vault/*
  7. // ==/UserScript==
  8. (function() {
  9. const downloadForm = document.querySelector('#dl_form');
  10. const downloadButton = downloadForm?.querySelector('button[type="submit"][style="width:100%"]');
  11.  
  12. if (downloadForm && !downloadButton) {
  13. downloadForm.insertAdjacentHTML('beforeend', '<button type="submit" style="width:34%">Download</button>');
  14. }
  15. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement