archhelper.user.js
· 756 B · JavaScript
Raw
// ==UserScript==
// @name Flat Raisin Arch Helper
// @namespace http://veryroundbird.house
// @version 1.0
// @description lets you not have to scroll up and down the page to magnify glass
// @author Carly Smallbird
// @match https://www1.flightrising.com/trading/archaeology/dig-site/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=flightrising.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
function main() {
document.addEventListener('keydown', function(e) {
if (e.which == 77) {
document.querySelector('[data-tooltip-source="#archaeology-tooltip-use-magnifying-glass"]').click();
}
});
}
main();
})();
| 1 | // ==UserScript== |
| 2 | // @name Flat Raisin Arch Helper |
| 3 | // @namespace http://veryroundbird.house |
| 4 | // @version 1.0 |
| 5 | // @description lets you not have to scroll up and down the page to magnify glass |
| 6 | // @author Carly Smallbird |
| 7 | // @match https://www1.flightrising.com/trading/archaeology/dig-site/* |
| 8 | // @icon https://www.google.com/s2/favicons?sz=64&domain=flightrising.com |
| 9 | // @grant none |
| 10 | // ==/UserScript== |
| 11 | |
| 12 | (function() { |
| 13 | 'use strict'; |
| 14 | |
| 15 | function main() { |
| 16 | document.addEventListener('keydown', function(e) { |
| 17 | if (e.which == 77) { |
| 18 | document.querySelector('[data-tooltip-source="#archaeology-tooltip-use-magnifying-glass"]').click(); |
| 19 | } |
| 20 | }); |
| 21 | } |
| 22 | |
| 23 | main(); |
| 24 | })(); |