14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import { getIsNonInteractiveSession } from '../../bootstrap/state.js'
|
|
import type { Command } from '../../commands.js'
|
|
|
|
const command: Command = {
|
|
name: 'chrome',
|
|
description: 'Claude in Chrome (Beta) settings',
|
|
availability: ['claude-ai'],
|
|
isEnabled: () => !getIsNonInteractiveSession(),
|
|
type: 'local-jsx',
|
|
load: () => import('./chrome.js'),
|
|
}
|
|
|
|
export default command
|