├── .devcontainer └── devcontainer.json ├── .gitignore ├── .vscode └── launch.json ├── LICENSE.md ├── README.md ├── index.js └── package.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/blackbeard-extension/HEAD/package.json --------------------------------------------------------------------------------