// ==UserScript== // @name Press B to Bond // @namespace http://veryroundbird.house // @version 1.0 // @description bind the bond button to the 'b' key so that i get less RSI // @author Carly Smallbird // @match https://*.flightrising.com/dragon/* // @icon https://www.google.com/s2/favicons?sz=64&domain=flightrising.com // @grant none // ==/UserScript== (function() { const bondButton = document.querySelector('#dragon-profile-button-bond'); document.addEventListener('keydown', function(e) { if (e.keycode == 66) { bondButton.dispatchEvent('click'); } }); })();