注册链接(二选一):
邮箱验证:
激活账户:
领取福利:
网络要求:
邮箱限制:
服务简介:
下面是F12 Console脚本,奔着封车去的。
function generateRandomCode(length = 5) {
const chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
return Array.from({ length }, () => chars[Math.floor(Math.random() * chars.length)]).join('');
}
function extractReferralLink(text) {
const match = text.match(/https:\/\/cursor\.com\/referral\?code=[A-Z0-9]+/);
return match ? match[0] : null;
}
let intervalId = null;
function stopFetching() {
if (intervalId) {
clearInterval(intervalId);
console.log("已停止");
intervalId = null;
}
}
function startFetching() {
stopFetching(); // 确保不重复启动
console.log("开始获取,输入 stopFetching() 可停止");
intervalId = setInterval(async () => {
const url = `https://www.perplexity.ai/account/pro-perks?_rsc=${generateRandomCode()}`;
try {
const res = await fetch(url, { method: "GET", credentials: "include" });
const text = await res.text();
const link = extractReferralLink(text);
if (link) console.log(link);
} catch (e) {}
}, 500);
}
window.startFetching = startFetching;
window.stopFetching = stopFetching;
startFetching();
被全部回收了,玩不起了啊
封车了吗