weddy估算 Cursor 订阅用量和额度的控制台脚本 中发帖

续详细分析 Cursor 的 Grok 模型月额度,可能没有你想象的那么多:Ultra 大约 $2000,Pro+ 有 $400,这里我给一个统计脚本: 
await (async () => {
  const now = new Date();
  const startDate = new Date(now.getFullYear(), now.getMonth(), 1).getTime();

  const res = await fetch("/api/dashboard/get-aggregated-usage-events", {
    method: "POST",
    credentials: "include",
    headers: { "Content-Type": "application/json" },
    body: JSON.string...
 
 
Back to Top