【GPT免费试用】突然发现,我的账号可以试用了

伪装 2026-07-14 17:10 1

等我几分钟,我试试,能不能支付



最新回复 (13)
  • 云浩同学 07-14 17:12
    1

    666,可喜可贺,喜大普奔,恭喜佬

  • 蛮吉 07-14 17:13
    2

    钟,我试试,能不能支付



    周末我也发现了,不过被卡在支付那里了,需要绑卡或者苹果支付,我被卡了,刚申请了招商的visa卡,不知道可不可行~

  • borisjohny 07-14 17:13
    3

    恭喜佬儿,碰到最简单的一步,后面最难的一步是绑卡

  • 伪装 楼主 07-14 17:19
    4

    为什么我点支付,没有反应,跳转不下去

  • 蛮吉 07-14 17:21
    5

    没有反应,跳转不下



    梯子问题?换个节点试试吧,我当时用的日本节点,结算都显示的日元 ^-^

  • Hobr 07-14 17:27
    6

    不好搞, 我的也有试用资格, 但是不管paypal还是自己的招商万事达卡都被拒绝了

  • faintout 07-14 17:40
    7

    难的是支付 之前的便宜渠道都没了我就知道支付难过了

  • 伪装 楼主 07-14 17:45
    8

    看到这个页面亲切哈,之前一直使用paypal支付,很爽,无限制

  • lixl 07-14 17:47
    9

    日本区一直是可以的,但是没有卡可以绑…

  • 伪装 楼主 07-14 17:50
    10

    我是固定美国地址,我切换日本也没有效果,换电脑也不能支付,跳转不到支付页面

  • giao父 07-14 17:51
    11

    这种试用资格账号你要多少我能给你弄多少,关键是支付啊 ^-^

  • 小谭 07-14 17:53
    12

    现在plus的试用,已经是最难薅的一步了吧。

  • chara_white 07-14 19:27
    13

    免费试用风控比直接付费plus高,我这里同一张卡,付费可以买plus,免费试用过不去




    一个跳过免费试用,直接付费买plus的脚本(粘贴到f12 console后点击领取免费试用)


    (() => {
    // 避免重复安装
    if (window.__promoCampaignFetchHook) {
    console.warn("[fetch hook] 已经安装,无需重复执行。");
    return;
    }

    const originalFetch = window.fetch;

    /**
    * 尝试删除 JSON 文本中的顶层 promo_campaign 字段。
    */
    function removePromoCampaign(bodyText) {
    if (typeof bodyText !== "string" || !bodyText.trim()) {
    return null;
    }

    try {
    const data = JSON.parse(bodyText);

    if (
    data === null ||
    typeof data !== "object" ||
    Array.isArray(data) ||
    !Object.prototype.hasOwnProperty.call(data, "promo_campaign")
    ) {
    return null;
    }

    const removedValue = data.promo_campaign;
    delete data.promo_campaign;

    return {
    body: JSON.stringify(data),
    removedValue,
    data,
    };
    } catch {
    // 不是合法 JSON,不处理
    return null;
    }
    }

    window.fetch = async function hookedFetch(input, init) {
    let requestUrl =
    typeof input === "string"
    ? input
    : input instanceof URL
    ? input.href
    : input?.url;

    /*
    * 情况一:
    * fetch(url, { body: JSON.stringify(...) })
    * 或 fetch(request, { body: ... })
    */
    if (init && typeof init.body === "string") {
    const result = removePromoCampaign(init.body);

    if (result) {
    init = {
    ...init,
    body: result.body,
    };

    console.log("[fetch hook] 已删除 promo_campaign", {
    url: requestUrl,
    removedValue: result.removedValue,
    modifiedBody: result.data,
    });
    }

    return originalFetch.call(this, input, init);
    }

    /*
    * 情况二:
    * fetch(new Request(url, { body: JSON.stringify(...) }))
    */
    if (
    input instanceof Request &&
    !input.bodyUsed &&
    !["GET", "HEAD"].includes(input.method.toUpperCase())
    ) {
    try {
    const bodyText = await input.clone().text();
    const result = removePromoCampaign(bodyText);

    if (result) {
    const modifiedRequest = new Request(input, {
    body: result.body,
    });

    console.log("[fetch hook] 已删除 promo_campaign", {
    url: input.url,
    removedValue: result.removedValue,
    modifiedBody: result.data,
    });

    return originalFetch.call(this, modifiedRequest, init);
    }
    } catch (error) {
    console.warn("[fetch hook] 检查 Request 请求体失败,已使用原请求:", error);
    }
    }

    return originalFetch.call(this, input, init);
    };

    window.__promoCampaignFetchHook = {
    uninstall() {
    window.fetch = originalFetch;
    delete window.__promoCampaignFetchHook;
    console.log("[fetch hook] 已卸载。");
    },
    };

    console.log(
    "[fetch hook] 安装成功。卸载请执行:window.__promoCampaignFetchHook.uninstall()"
    );
    })();

* 帖子来源Linux.do
返回