去评论
dz插件网

微软Outlook注册没有0元订购ChatGPT Business解决方法

迪巴拉
2026/01/10 20:45:07
鍙戠幇寰蒋閭欢娉ㄥ唽瀹孫penAI璐﹀彿涔熸病鏈0鍏冭璐 锛屼竴鑸琽utlook鍜実mail杩欎簺閮戒笉缁欏紑鐨勶紝鐜板湪鍏跺疄鏄彲浠ュ悗鍙扮洿鎺ョ櫨鍒嗙櫨鎻愬彇0鍏冮摼鎺
浠婂ぉ鏈変汉闂垜 锛屾垜鎰熻寰堝浜轰笉鐭ラ亾鎴戝簲璇ヨ鏇村浜虹煡閬擄紝闈炲父绠€鍗
鐩存帴缁欎唬鐮侊紝鎴戝仛鎴愪簡涓€涓功绛捐剼鏈紝淇濆瓨涓轰功绛 锛岀櫥褰曚互鍚庣偣鍑讳功绛惧嵆鍙細
  1. javascript:(async function (){try {const t=await (await fetch("/api/auth/session")).json();if (!t.accessToken){alert("璇峰厛鐧诲綍 ChatGPT锛");return} const p={plan_name:"chatgptteamplan",team_plan_data:{workspace_name:"Fangmu",price_interval:"month",seat_quantity:5},promo_campaign:{promo_campaign_id:"team-1-month-free",is_coupon_from_query_param:!0},checkout_ui_mode:"redirect"};const r=await fetch("https://chatgpt.com/backend-api/payments/checkout",{method:"POST",headers:{Authorization:"Bearer "+t.accessToken,"Content-Type":"application/json"},body:JSON.stringify(p)});const d=await r.json();if (d.url){window.location.href=d.url} else {alert("鎻愬彇澶辫触锛"+(d.detail||JSON.stringify(d)))}} catch (e){alert("鍙戠敓閿欒锛"+e)}})();
濡傛灉涓嶄細鐢ㄨ繕鏈夌鏀圭尨鐨勭増鏈紝瀹夎娌圭尨鎻掍欢鍐嶅鍏ヨ剼鏈
娌圭尨鐗
  1. // ==UserScript==// [url=home.php?mod=space&uid=4014]@name[/url]         ChatGPT Team 鏀粯閾炬帴鎻愬彇鍣// @namespace    http://tampermonkey.net/// @version      1.0// @description  鎻愬彇ChatGPT Team璁″垝鐨勬敮浠樿烦杞摼鎺// @author       You// @match        https://chatgpt.com/*// @match        https://chat.openai.com/*// @grant        GM_notification// @grant        GM_setClipboard// @run-at       document-idle// ==/UserScript==(function() {    'use strict';    // 鍒涘缓鐣岄潰鍏冪礌    function createUI() {        const container = document.createElement('div');        container.id = 'team-link-extractor';        container.style.cssText = `            position: fixed;            top: 20px;            right: 20px;            background: white;            border: 2px solid #10a37f;            border-radius: 10px;            padding: 15px;            box-shadow: 0 4px 12px rgba(0,0,0,0.15);            z-index: 9999;            min-width: 300px;            max-width: 400px;            font-family: system-ui, -apple-system, sans-serif;        `;        const title = document.createElement('div');        title.textContent = 'ChatGPT Team 閾炬帴鎻愬彇鍣';        title.style.cssText = `            font-weight: bold;            font-size: 16px;            margin-bottom: 10px;            color: #10a37f;        `;        const button = document.createElement('button');        button.id = 'extract-btn';        button.textContent = '鎻愬彇鏀粯閾炬帴';        button.style.cssText = `            background: #10a37f;            color: white;            border: none;            padding: 10px 20px;            border-radius: 5px;            cursor: pointer;            font-size: 14px;            width: 100%;            margin-bottom: 15px;            transition: background 0.3s;        `;        button.onmouseover = () => button.style.background = '#0d8c6d';        button.onmouseout = () => button.style.background = '#10a37f';        const resultContainer = document.createElement('div');        resultContainer.id = 'result-container';        resultContainer.style.cssText = `            display: none;            margin-top: 10px;        `;        const resultLabel = document.createElement('div');        resultLabel.textContent = '鎻愬彇缁撴灉锛';        resultLabel.style.cssText = `            font-size: 14px;            margin-bottom: 5px;            color: #666;        `;        const resultText = document.createElement('div');        resultText.id = 'result-text';        resultText.style.cssText = `            background: #f5f5f5;            padding: 10px;            border-radius: 5px;            font-size: 12px;            word-break: break-all;            max-height: 100px;            overflow-y: auto;            border: 1px solid #ddd;        `;        const copyBtn = document.createElement('button');        copyBtn.id = 'copy-btn';        copyBtn.textContent = '澶嶅埗閾炬帴';        copyBtn.style.cssText = `            background: #4a5568;            color: white;            border: none;            padding: 5px 10px;            border-radius: 3px;            cursor: pointer;            font-size: 12px;            margin-top: 5px;            display: none;        `;        const status = document.createElement('div');        status.id = 'status';        status.style.cssText = `            font-size: 12px;            margin-top: 5px;            color: #666;        `;        resultContainer.appendChild(resultLabel);        resultContainer.appendChild(resultText);        resultContainer.appendChild(copyBtn);        resultContainer.appendChild(status);        container.appendChild(title);        container.appendChild(button);        container.appendChild(resultContainer);        document.body.appendChild(container);        // 娣诲姞浜嬩欢鐩戝惉鍣        button.addEventListener('click', extractPaymentLink);        copyBtn.addEventListener('click', copyToClipboard);    }    // 鎻愬彇鏀粯閾炬帴    async function extractPaymentLink() {        const btn = document.getElementById('extract-btn');        const resultContainer = document.getElementById('result-container');        const resultText = document.getElementById('result-text');        const copyBtn = document.getElementById('copy-btn');        const status = document.getElementById('status');        btn.disabled = true;        btn.textContent = '鎻愬彇涓...';        btn.style.background = '#999';        resultText.textContent = '';        copyBtn.style.display = 'none';        status.textContent = '';        try {            // 鑾峰彇 session            const sessionResponse = await fetch("/api/auth/session");            const sessionData = await sessionResponse.json();            if (!sessionData.accessToken) {                status.textContent = '璇峰厛鐧诲綍ChatGPT锛';                status.style.color = '#e53e3e';                resultContainer.style.display = 'block';                return;            }            // 鏋勫缓璇锋眰鍙傛暟            const payload = {                plan_name: "chatgptteamplan",                team_plan_data: {                    workspace_name: "Fangmu",                    price_interval: "month",                    seat_quantity: 5                },                promo_campaign: {                    promo_campaign_id: "team-1-month-free",                    is_coupon_from_query_param: true                },                checkout_ui_mode: "redirect"            };            // 鍙戦€佽姹            const response = await fetch("https://chatgpt.com/backend-api/payments/checkout", {                method: "POST",                headers: {                    Authorization: "Bearer " + sessionData.accessToken,                    "Content-Type": "application/json"                },                body: JSON.stringify(payload)            });            const data = await response.json();            if (data.url) {                resultText.textContent = data.url;                resultContainer.style.display = 'block';                copyBtn.style.display = 'inline-block';                status.textContent = '鉁 閾炬帴鎻愬彇鎴愬姛锛';                status.style.color = '#38a169';                // 鏄剧ず閫氱煡                if (typeof GM_notification !== 'undefined') {                    GM_notification({                        text: '鏀粯閾炬帴宸叉垚鍔熸彁鍙',                        title: 'ChatGPT Team 閾炬帴鎻愬彇鍣',                        timeout: 3000                    });                }            } else {                resultText.textContent = JSON.stringify(data, null, 2);                resultContainer.style.display = 'block';                status.textContent = '鉂 鎻愬彇澶辫触锛' + (data.detail || '鏈煡閿欒');                status.style.color = '#e53e3e';            }        } catch (error) {            resultText.textContent = error.toString();            resultContainer.style.display = 'block';            status.textContent = '鉂 鍙戠敓閿欒';            status.style.color = '#e53e3e';            console.error('鎻愬彇閿欒:', error);        } finally {            btn.disabled = false;            btn.textContent = '鎻愬彇鏀粯閾炬帴';            btn.style.background = '#10a37f';        }    }    // 澶嶅埗鍒板壀璐存澘    async function copyToClipboard() {        const resultText = document.getElementById('result-text');        const status = document.getElementById('status');        try {            if (typeof GM_setClipboard !== 'undefined') {                await GM_setClipboard(resultText.textContent, 'text');            } else {                // 澶囩敤鏂规硶                const textArea = document.createElement('textarea');                textArea.value = resultText.textContent;                document.body.appendChild(textArea);                textArea.select();                document.execCommand('copy');                document.body.removeChild(textArea);            }            status.textContent = '鉁 閾炬帴宸插鍒跺埌鍓创鏉匡紒';            status.style.color = '#38a169';            setTimeout(() => {                status.textContent = '';            }, 2000);        } catch (error) {            status.textContent = '鉂 澶嶅埗澶辫触';            status.style.color = '#e53e3e';        }    }    // 鍒濆鍖    window.addEventListener('load', function() {        setTimeout(createUI, 2000); // 绛夊緟椤甸潰鍔犺浇瀹屾垚    });    // 娣诲姞鏍峰紡    const style = document.createElement('style');    style.textContent = `        #extract-btn:hover {            opacity: 0.9;        }        #copy-btn:hover {            opacity: 0.9;        }        #team-link-extractor {            animation: slideIn 0.3s ease-out;        }        @keyframes slideIn {            from {                transform: translateX(100%);                opacity: 0;            }            to {                transform: translateX(0);                opacity: 1;            }        }    `;    document.head.appendChild(style);})();
鏀惰捣



甯屾湜鑳界粰澶у鎻愪緵鍒板府鍔﹡
璺宠浆0鍏冩敮浠 锛屾敮浠樻垚鍔熷嵆鍙

0鍏冭喘鍙兘瀛樺湪灏佸彿椋庨櫓锛屽ぇ瀹惰灏忓彿鏂板彿灏濊瘯 锛岄闄╄嚜琛屾壙鎷
PayPal闇€瑕佹敼鍒癊EA鍐嶈璐墠鏈...