Last active 1 month ago

archhelper.user.js Raw
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})();