kodegen_tools_browser 0.10.11

KODEGEN.ᴀɪ: Memory-efficient, Blazing-Fast, MCP tools for code generation agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Mock Chrome app API
window.chrome = window.chrome || {};
window.chrome.app = {
  InstallState: {
    DISABLED: 'DISABLED',
    INSTALLED: 'INSTALLED',
    NOT_INSTALLED: 'NOT_INSTALLED'
  },
  RunningState: {
    CANNOT_RUN: 'CANNOT_RUN',
    READY_TO_RUN: 'READY_TO_RUN',
    RUNNING: 'RUNNING'
  },
  getDetails: () => {},
  getIsInstalled: () => false,
  installState: () => 'NOT_INSTALLED',
  runningState: () => 'CANNOT_RUN'
};