Set Store

Saves a valued used by Chemical in localStorage. Stores will need to be enabled for transport and wisp in Setup and the rest in the Input Component.

You can set: “transport”, “wisp”, “service”, “autoHttps”, “searchEngine”

chemical.setStore("service", "rammerhead")

You can listen for a change from chemicalStoreChange.

window.addEventListener("chemicalStoreChange", function ({ detail }) {
    console.log(detail.key, detail.value);
});