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
// Store original values
const actualInnerWidth = window.innerWidth;
const actualInnerHeight = window.innerHeight;

// Add realistic chrome
Object.defineProperties(window, {
  'outerWidth': { get: () => actualInnerWidth + 16 },
  'outerHeight': { get: () => actualInnerHeight + 135 },
  'innerWidth': { get: () => actualInnerWidth },
  'innerHeight': { get: () => actualInnerHeight }
});