GC - Inventory dropdown selector

Remembers the last dropdown selection

目前为 2023-03-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         GC - Inventory dropdown selector
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remembers the last dropdown selection
// @author       wibreth
// @match        https://www.grundos.cafe/itemview/*
// @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);
    });
})();

QingJ © 2025

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