当我们使用 Jetpack 0.6 时,我们可以表现出这样的东西,
var manifest = {
settings: [
{
name: "foo",
type: "group",
label: "Twitter Account",
settings: [
{ name: "twitterId", type: "text", label: "Username" },
{ name: "twitterPass", type: "password", label: "Password" }
]
}
]
};
jetpack.future.import("storage.settings");
有谁知道如何在 Jetpack SDK 0.9 中做同样的事情。
我应该使用哪个模块?