gitextract_che9_re1/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CLAUDE.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── packages/ │ ├── extension/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── manifest.json │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── src/ │ │ │ ├── background.ts │ │ │ ├── relayConnection.ts │ │ │ └── ui/ │ │ │ ├── authToken.css │ │ │ ├── authToken.tsx │ │ │ ├── colors.css │ │ │ ├── connect.css │ │ │ ├── connect.html │ │ │ ├── connect.tsx │ │ │ ├── copyToClipboard.css │ │ │ ├── copyToClipboard.tsx │ │ │ ├── icons.css │ │ │ ├── icons.tsx │ │ │ ├── status.html │ │ │ ├── status.tsx │ │ │ ├── tabItem.tsx │ │ │ └── tsconfig.json │ │ ├── tests/ │ │ │ └── extension.spec.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.ui.json │ │ ├── vite.config.mts │ │ └── vite.sw.config.mts │ ├── playwright-cli-stub/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── package.json │ └── playwright-mcp/ │ ├── .gitignore │ ├── .npmignore │ ├── cli.js │ ├── config.d.ts │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── playwright.config.ts │ ├── tests/ │ │ ├── capabilities.spec.ts │ │ ├── cli.spec.ts │ │ ├── click.spec.ts │ │ ├── core.spec.ts │ │ ├── fixtures.ts │ │ ├── library.spec.ts │ │ └── testserver/ │ │ ├── cert.pem │ │ ├── index.ts │ │ ├── key.pem │ │ └── san.cnf │ └── update-readme.js └── roll.js