GC - Inventory dropdown selector

Remembers the last dropdown selection

// ==UserScript==
// @name         GC - Inventory dropdown selector
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Remembers the last dropdown selection
// @author       wibreth
// @match        https://www.grundos.cafe/itemview/*
// @match        https://www.grundos.cafe/useobject/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

(function() {
    'use strict';

    let itemaction = GM_getValue("itemaction", false);
    if (itemaction) {
        $('#itemaction_select').val(itemaction);
    }
    $('#itemaction_select').change(function() {
        itemaction = $('#itemaction_select').val();
        GM_setValue("itemaction", itemaction);
    });

    // useobject
    let recip =  GM_getValue("recip", false);
    if (recip) {
        $('#recip').val(recip);
    }
    $('#recip').change(function() {
        recip = $('#recip').val();
        GM_setValue("recip", recip);
    });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址