MCPcopy Create free account
hub / github.com/Noumena-Network/code / shouldAutoEnableClaudeInChrome

Function shouldAutoEnableClaudeInChrome

src/utils/claudeInChrome/setup.ts:74–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

72let shouldAutoEnable: boolean | undefined = undefined
73
74export function shouldAutoEnableClaudeInChrome(): boolean {
75 if (shouldAutoEnable !== undefined) {
76 return shouldAutoEnable
77 }
78
79 shouldAutoEnable =
80 getIsInteractive() &&
81 isChromeExtensionInstalled_CACHED_MAY_BE_STALE() &&
82 (isInternalBuild() ||
83 getFeatureValue_CACHED_MAY_BE_STALE('ncode_chrome_auto_enable', false))
84
85 return shouldAutoEnable
86}
87
88/**
89 * Setup Code in Chrome MCP server and tools

Callers 3

runFunction · 0.85
initBundledSkillsFunction · 0.85

Tested by

no test coverage detected