Greasy Fork

GM_config (eight's version)

A library to help you set up configure in greasemonkey script.

< 脚本GM_config (eight's version)的反馈

提问/评论

§
发表于:2015-08-03

radio button

Hi,

It really needs radio button support just as the joe simmon's one. Is it planned?

eight作者
§
发表于:2015-08-05

I will work on it these days.

The option object might look like:

{
    label: "Select gender",
    type: "radio"   // radio|select
    default: "male",    // Default key
    options: {
        male: "I am male",
        female: "I am female"
    },
    multiple: false // Will only work on type:select. If set to true, return a list of selected keys.
}
eight作者
§
发表于:2015-08-06

Added in 2.1.0.

§
发表于:2015-08-06

thanks

发表回复

登录以发表回复。