Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Re-add Download Button Vimm's Lair
- // @version 1.2
- // @description Grabs the mediaId and re-adds the download button only on pages that have them removed
- // @author anonymous
- // @match https://vimm.net/vault/*
- // ==/UserScript==
- (function() {
- const downloadForm = document.querySelector('#dl_form');
- const downloadButton = downloadForm?.querySelector('button[type="submit"][style="width:100%"]');
- if (downloadForm && !downloadButton) {
- downloadForm.insertAdjacentHTML('beforeend', '<button type="submit" style="width:34%">Download</button>');
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement