Skip to content

Releases: phenixcoder/feature-flags-chrome-plugin

Added registerMyFeatureFlags support

30 Sep 01:37
Compare
Choose a tag to compare

Now you can expose a register handle to avoid race conditions.

Plugin will automatically call this function after loading into the page.

window.registerMyFeatureFlags = (register) => {
  register(toggles, (key, value) => {
    console.info(`Toggling ${key} => ${value}`);
    toggleFeatureFlag(key, value);
  });
};

Initial release

17 Aug 09:28
Compare
Choose a tag to compare
v1.0.0

Webstore Link Update