CursorPro 后台管理系统 v1.0

功能:
- 激活码管理 (Pro/Auto 两种类型)
- 账号池管理
- 设备绑定记录
- 使用日志
- 搜索/筛选功能
- 禁用/启用功能 (支持退款参考)
- 全局设置 (换号间隔、额度消耗等)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
ccdojox-crypto
2025-12-16 20:54:44 +08:00
commit 9e2333c90c
62 changed files with 9567 additions and 0 deletions

76
extension/package.json Normal file
View File

@@ -0,0 +1,76 @@
{
"name": "cursorpro",
"displayName": "CursorPro",
"description": "Cursor 账号管理与换号工具",
"version": "0.4.5",
"publisher": "cursorpro",
"repository": {
"type": "git",
"url": "https://github.com/cursorpro/cursorpro-extension"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"extensionKind": [
"ui"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cursorpro.showPanel",
"title": "CursorPro: 打开控制面板"
},
{
"command": "cursorpro.switchAccount",
"title": "CursorPro: 立即换号"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "cursorpro-sidebar",
"title": "CursorPro",
"icon": "media/icon.svg"
}
]
},
"views": {
"cursorpro-sidebar": [
{
"type": "webview",
"id": "cursorpro.mainView",
"name": "控制面板"
}
]
},
"configuration": {
"title": "CursorPro",
"properties": {
"cursorpro.cursorPath": {
"type": "string",
"default": "",
"description": "手动设置 Cursor 安装路径如果自动检测失败。例如C:\\Program Files\\cursor 或 /Applications/Cursor.app"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"esbuild": "^0.27.0",
"typescript": "^5.0.0"
}
}