在 VS Code 编辑器中直接打开 B 站看动漫的插件。

Ctrl+Shift+P(Mac: Cmd+Shift+P)打开命令面板示例链接:
https://www.bilibili.com/bangumi/play/ss46089
粘贴进去回车就能看。
.vsix 文件Ctrl+Shift+P → Install from VSIX → 选择下载的文件git clone https://cnb.cool/raintea/anime-player.git
cd anime-player
npm install
npm run compile
用 VS Code 打开项目,按 F5 启动调试。
npx @vscode/vsce package --allow-missing-repository --skip-license
| 命令 | 说明 |
|---|---|
Anime Player: 打开动漫播放器 | 在编辑器内打开 B 站番剧首页 |
Anime Player: 搜索动漫 | 输入框粘贴 B 站链接直接打开 |
Ctrl+W 关闭标签页anime-player/ ├── package.json ├── tsconfig.json ├── .cnb.yml # CI/CD 自动构建配置 ├── src/ │ ├── extension.ts # 插件入口 │ ├── animePlayerPanel.ts │ └── animeSidebarProvider.ts └── media/ ├── anime.svg └── screenshot.png
MIT