Files
userscripts/booru_downloader.user.js

23 lines
747 B
JavaScript

// ==UserScript==
// @name Booru Downloader
// @namespace BigDuckie.BooruDownloader
// @version 2025.1.13
// @description Adds keyboard shortcuts to various Booru sites to allow for easier downloading.
// @icon https://www.google.com/s2/favicons?sz=64&domain=donmai.us
// @author Big Duckie
// @copyright 2025, Big Duckie (https://bigduckie.dev)
// @license MIT
// @match https://danbooru.donmai.us/posts/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
addEventListener("keydown", event => {
if (event.key == "s" && event.ctrlKey) {
event.preventDefault()
document.querySelector("#post-option-download>a").click()
}
})
})();