1 2 3 4 5 6 7 8 9 10 11 12 13
import { useChromeStorageSync } from "use-chrome-storage"; export type Settings = { apiKey: string; address: string; }; export default function usePluginSettings() { return useChromeStorageSync("settings", { apiKey: "", address: "", } as Settings); }