Set VPN on Windows

Image
by Telespeeder | June 22, 2023
Image

Welcome, speed enthusiasts! ๐Ÿš€ If youโ€™re looking to elevate your gaming experience on Windows to the next level, youโ€™ve come to the right place. Telespeeder is here to boost your gameplay with ultra-fast servers and low latency. Let's get you started with this step-by-step guide.

A Brief Introduction:

Telespeeder is a game acceleration service that propels your gaming experience by routing your traffic through optimized servers, thereby reducing latency and enhancing your connection speed.

Prerequisites:

Step 1: Register an Account

  1. Visit the Telespeeder Dashboard by navigating to dashboard.telespeeder.com.
  2. Register for an account. If you haven't received the verification email, check your spam folder as it might have been mistakenly marked as junk mail.
  3. If you have an invitation code, enter it in the relevant field, otherwise, leave it blank.

Step 2: Download Clash Verge

Download Clash Verge from GitHub or from this direct link. If youโ€™re unable to access GitHub, click here to download the mirror Clash Verge from Telespeeder (version 2.1.2, released on February, 2025).

Let's Get Speeding ๐ŸŽ๏ธ

Follow these steps to unleash the power of Telespeeder on your Windows machine:

Pro Tips:

  1. Server Selection: Before selecting a server, hover over any server and click "One-click latency and speed test" to test server latency and speed. It's recommended to connect to servers with latency around 200ms, and perform multiple tests for accuracy.
  2. Routing Configuration: In Routing, enable "Whitelist" so local services like WeChat and Alipay bypass the Connection from Telespeeder for faster connections.
  3. Stay Updated: If youโ€™re not in the habit of regularly checking our official website, you can click "Update Subscription without proxy" under "Subscription Group" in the menu bar monthly to automatically sync new/adjusted servers.
  4. In order to check the connection and speed, you can Check your IP or Check the Speed like the following pictures:
Image Image

Extend Script:

You can use Extend Script to let Clash Verge handel Internet Connect issues like DNS error and so on. Following the following steps to active it.

  1. Step 1. Copy the script: Click the Copy button to copy the following extend script

    Example implementation in ".htaccess":

    // ๅ›ฝๅ†…DNSๆœๅŠกๅ™จ
    const domesticNameservers = [
        "https://dns.alidns.com/dns-query", // ้˜ฟ้‡Œไบ‘ๅ…ฌๅ…ฑDNS
        "https://doh.pub/dns-query", // ่…พ่ฎฏDNSPod
        "https://doh.360.cn/dns-query" // 360ๅฎ‰ๅ…จDNS
    ];
    // ๅ›ฝๅค–DNSๆœๅŠกๅ™จ
    const foreignNameservers = [
        "https://1.1.1.1/dns-query", // Cloudflare(ไธป)
        "https://1.0.0.1/dns-query", // Cloudflare(ๅค‡)
        "https://208.67.222.222/dns-query", // OpenDNS(ไธป)
        "https://208.67.220.220/dns-query", // OpenDNS(ๅค‡)
        "https://194.242.2.2/dns-query", // Mullvad(ไธป)
        "https://194.242.2.3/dns-query" // Mullvad(ๅค‡)
    ];
    // DNS้…็ฝฎ
    const dnsConfig = {
        "enable": true,
        "listen": "0.0.0.0:1053",
        "ipv6": true,
        "use-system-hosts": false,
        "cache-algorithm": "arc",
        "enhanced-mode": "fake-ip",
        "fake-ip-range": "198.18.0.1/16",
        "fake-ip-filter": [
        // ๆœฌๅœฐไธปๆœบ/่ฎพๅค‡
        "+.lan",
        "+.local",
        // Windows็ฝ‘็ปœๅ‡บ็Žฐๅฐๅœฐ็ƒๅ›พๆ ‡
        "+.msftconnecttest.com",
        "+.msftncsi.com",
        // QQๅฟซ้€Ÿ็™ปๅฝ•ๆฃ€ๆต‹ๅคฑ่ดฅ
        "localhost.ptlogin2.qq.com",
        "localhost.sec.qq.com",
        // ๅพฎไฟกๅฟซ้€Ÿ็™ปๅฝ•ๆฃ€ๆต‹ๅคฑ่ดฅ
        "localhost.work.weixin.qq.com"
        ],
        "default-nameserver": ["223.5.5.5", "119.29.29.29", "1.1.1.1", "8.8.8.8"],
        "nameserver": [...domesticNameservers, ...foreignNameservers],
        "proxy-server-nameserver": [...domesticNameservers, ...foreignNameservers],
        "nameserver-policy": {
        "geosite:private,cn,geolocation-cn": domesticNameservers,
        "geosite:google,youtube,telegram,gfw,geolocation-!cn": foreignNameservers
        }
    };
    // ่ง„ๅˆ™้›†้€š็”จ้…็ฝฎ
    const ruleProviderCommon = {
        "type": "http",
        "format": "yaml",
        "interval": 86400
    };
    // ่ง„ๅˆ™้›†้…็ฝฎ
    const ruleProviders = {
        "reject": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/reject.txt",
        "path": "./ruleset/loyalsoldier/reject.yaml"
        },
        "icloud": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/icloud.txt",
        "path": "./ruleset/loyalsoldier/icloud.yaml"
        },
        "apple": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/apple.txt",
        "path": "./ruleset/loyalsoldier/apple.yaml"
        },
        "google": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/google.txt",
        "path": "./ruleset/loyalsoldier/google.yaml"
        },
        "proxy": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/proxy.txt",
        "path": "./ruleset/loyalsoldier/proxy.yaml"
        },
        "direct": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/direct.txt",
        "path": "./ruleset/loyalsoldier/direct.yaml"
        },
        "private": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/private.txt",
        "path": "./ruleset/loyalsoldier/private.yaml"
        },
        "gfw": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/gfw.txt",
        "path": "./ruleset/loyalsoldier/gfw.yaml"
        },
        "tld-not-cn": {
        ...ruleProviderCommon,
        "behavior": "domain",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/tld-not-cn.txt",
        "path": "./ruleset/loyalsoldier/tld-not-cn.yaml"
        },
        "telegramcidr": {
        ...ruleProviderCommon,
        "behavior": "ipcidr",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/telegramcidr.txt",
        "path": "./ruleset/loyalsoldier/telegramcidr.yaml"
        },
        "cncidr": {
        ...ruleProviderCommon,
        "behavior": "ipcidr",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/cncidr.txt",
        "path": "./ruleset/loyalsoldier/cncidr.yaml"
        },
        "lancidr": {
        ...ruleProviderCommon,
        "behavior": "ipcidr",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/lancidr.txt",
        "path": "./ruleset/loyalsoldier/lancidr.yaml"
        },
        "applications": {
        ...ruleProviderCommon,
        "behavior": "classical",
        "url": "https://fastly.jsdelivr.net/gh/Loyalsoldier/clash-rules@release/applications.txt",
        "path": "./ruleset/loyalsoldier/applications.yaml"
        },
        "openai": {
        ...ruleProviderCommon,
        "behavior": "classical",
        "url": "https://fastly.jsdelivr.net/gh/blackmatrix7/ios_rule_script@master/rule/Clash/OpenAI/OpenAI.yaml",
        "path": "./ruleset/blackmatrix7/openai.yaml"
        }
    };
    // ่ง„ๅˆ™
    const rules = [
        // ่‡ชๅฎšไน‰่ง„ๅˆ™
        "DOMAIN-SUFFIX,googleapis.cn,่Š‚็‚น้€‰ๆ‹ฉ", // GoogleๆœๅŠก
        "DOMAIN-SUFFIX,gstatic.com,่Š‚็‚น้€‰ๆ‹ฉ", // Google้™ๆ€่ต„ๆบ
        "DOMAIN-SUFFIX,xn--ngstr-lra8j.com,่Š‚็‚น้€‰ๆ‹ฉ", // Google Playไธ‹่ฝฝๆœๅŠก
        "DOMAIN-SUFFIX,github.io,่Š‚็‚น้€‰ๆ‹ฉ", // Github Pages
        "DOMAIN,v2rayse.com,่Š‚็‚น้€‰ๆ‹ฉ", // V2rayse่Š‚็‚นๅทฅๅ…ท
        // blackmatrix7 ่ง„ๅˆ™้›†
        "RULE-SET,openai,ChatGPT",
        // Loyalsoldier ่ง„ๅˆ™้›†
        "RULE-SET,applications,ๅ…จๅฑ€็›ด่ฟž",
        "RULE-SET,private,ๅ…จๅฑ€็›ด่ฟž",
        "RULE-SET,reject,ๅนฟๅ‘Š่ฟ‡ๆปค",
        "RULE-SET,icloud,ๅพฎ่ฝฏๆœๅŠก",
        "RULE-SET,apple,่‹นๆžœๆœๅŠก",
        "RULE-SET,google,่ฐทๆญŒๆœๅŠก",
        "RULE-SET,proxy,่Š‚็‚น้€‰ๆ‹ฉ",
        "RULE-SET,gfw,่Š‚็‚น้€‰ๆ‹ฉ",
        "RULE-SET,tld-not-cn,่Š‚็‚น้€‰ๆ‹ฉ",
        "RULE-SET,direct,ๅ…จๅฑ€็›ด่ฟž",
        "RULE-SET,lancidr,ๅ…จๅฑ€็›ด่ฟž,no-resolve",
        "RULE-SET,cncidr,ๅ…จๅฑ€็›ด่ฟž,no-resolve",
        "RULE-SET,telegramcidr,็”ตๆŠฅๆถˆๆฏ,no-resolve",
        // ๅ…ถไป–่ง„ๅˆ™
        "GEOIP,LAN,ๅ…จๅฑ€็›ด่ฟž,no-resolve",
        "GEOIP,CN,ๅ…จๅฑ€็›ด่ฟž,no-resolve",
        "MATCH,ๆผ็ฝ‘ไน‹้ฑผ"
    ];
    // ไปฃ็†็ป„้€š็”จ้…็ฝฎ
    const groupBaseOption = {
        "interval": 300,
        "timeout": 3000,
        "url": "https://www.google.com/generate_204",
        "lazy": true,
        "max-failed-times": 3,
        "hidden": false
    };
    
    // ็จ‹ๅบๅ…ฅๅฃ
    function main(config) {
        const proxyCount = config?.proxies?.length ?? 0;
        const proxyProviderCount =
        typeof config?.["proxy-providers"] === "object" ? Object.keys(config["proxy-providers"]).length : 0;
        if (proxyCount === 0 && proxyProviderCount === 0) {
        throw new Error("้…็ฝฎๆ–‡ไปถไธญๆœชๆ‰พๅˆฐไปปไฝ•ไปฃ็†");
        }
    
        // ่ฆ†็›–ๅŽŸ้…็ฝฎไธญDNS้…็ฝฎ
        config["dns"] = dnsConfig;
    
        // ่ฆ†็›–ๅŽŸ้…็ฝฎไธญ็š„ไปฃ็†็ป„
        config["proxy-groups"] = [
        {
            ...groupBaseOption,
            "name": "่Š‚็‚น้€‰ๆ‹ฉ",
            "type": "select",
            "proxies": ["ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/adjust.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅปถ่ฟŸ้€‰ไผ˜",
            "type": "url-test",
            "tolerance": 100,
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/speed.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๆ•…้šœ่ฝฌ็งป",
            "type": "fallback",
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/ambulance.svg"
        },
        {
            ...groupBaseOption,
            "name": "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)",
            "type": "load-balance",
            "strategy": "consistent-hashing",
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/merry_go.svg"
        },
        {
            ...groupBaseOption,
            "name": "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)",
            "type": "load-balance",
            "strategy": "round-robin",
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/balance.svg"
        },
        {
            ...groupBaseOption,
            "name": "่ฐทๆญŒๆœๅŠก",
            "type": "select",
            "proxies": ["่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)", "ๅ…จๅฑ€็›ด่ฟž"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/google.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅ›ฝๅค–ๅช’ไฝ“",
            "type": "select",
            "proxies": ["่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)", "ๅ…จๅฑ€็›ด่ฟž"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/youtube.svg"
        },
        {
            ...groupBaseOption,
            "name": "็”ตๆŠฅๆถˆๆฏ",
            "type": "select",
            "proxies": ["่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)", "ๅ…จๅฑ€็›ด่ฟž"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/telegram.svg"
        },
        {
            ...groupBaseOption,
            "url": "https://chatgpt.com",
            "expected-status": "200",
            "name": "ChatGPT",
            "type": "select",
            "include-all": true,
            "filter": "AD|๐Ÿ‡ฆ๐Ÿ‡ฉ|AE|๐Ÿ‡ฆ๐Ÿ‡ช|AF|๐Ÿ‡ฆ๐Ÿ‡ซ|AG|๐Ÿ‡ฆ๐Ÿ‡ฌ|AL|๐Ÿ‡ฆ๐Ÿ‡ฑ|AM|๐Ÿ‡ฆ๐Ÿ‡ฒ|AO|๐Ÿ‡ฆ๐Ÿ‡ด|AR|๐Ÿ‡ฆ๐Ÿ‡ท|AT|๐Ÿ‡ฆ๐Ÿ‡น|AU|๐Ÿ‡ฆ๐Ÿ‡บ|AZ|๐Ÿ‡ฆ๐Ÿ‡ฟ|BA|๐Ÿ‡ง๐Ÿ‡ฆ|BB|๐Ÿ‡ง๐Ÿ‡ง|BD|๐Ÿ‡ง๐Ÿ‡ฉ|BE|๐Ÿ‡ง๐Ÿ‡ช|BF|๐Ÿ‡ง๐Ÿ‡ซ|BG|๐Ÿ‡ง๐Ÿ‡ฌ|BH|๐Ÿ‡ง๐Ÿ‡ญ|BI|๐Ÿ‡ง๐Ÿ‡ฎ|BJ|๐Ÿ‡ง๐Ÿ‡ฏ|BN|๐Ÿ‡ง๐Ÿ‡ณ|BO|๐Ÿ‡ง๐Ÿ‡ด|BR|๐Ÿ‡ง๐Ÿ‡ท|BS|๐Ÿ‡ง๐Ÿ‡ธ|BT|๐Ÿ‡ง๐Ÿ‡น|BW|๐Ÿ‡ง๐Ÿ‡ผ|BZ|๐Ÿ‡ง๐Ÿ‡ฟ|CA|๐Ÿ‡จ๐Ÿ‡ฆ|CD|๐Ÿ‡จ๐Ÿ‡ฉ|CF|๐Ÿ‡จ๐Ÿ‡ซ|CG|๐Ÿ‡จ๐Ÿ‡ฌ|CH|๐Ÿ‡จ๐Ÿ‡ญ|CI|๐Ÿ‡จ๐Ÿ‡ฎ|CL|๐Ÿ‡จ๐Ÿ‡ฑ|CM|๐Ÿ‡จ๐Ÿ‡ฒ|CO|๐Ÿ‡จ๐Ÿ‡ด|CR|๐Ÿ‡จ๐Ÿ‡ท|CV|๐Ÿ‡จ๐Ÿ‡ป|CY|๐Ÿ‡จ๐Ÿ‡พ|CZ|๐Ÿ‡จ๐Ÿ‡ฟ|DE|๐Ÿ‡ฉ๐Ÿ‡ช|DJ|๐Ÿ‡ฉ๐Ÿ‡ฏ|DK|๐Ÿ‡ฉ๐Ÿ‡ฐ|DM|๐Ÿ‡ฉ๐Ÿ‡ฒ|DO|๐Ÿ‡ฉ๐Ÿ‡ด|DZ|๐Ÿ‡ฉ๐Ÿ‡ฟ|EC|๐Ÿ‡ช๐Ÿ‡จ|EE|๐Ÿ‡ช๐Ÿ‡ช|EG|๐Ÿ‡ช๐Ÿ‡ฌ|ER|๐Ÿ‡ช๐Ÿ‡ท|ES|๐Ÿ‡ช๐Ÿ‡ธ|ET|๐Ÿ‡ช๐Ÿ‡น|FI|๐Ÿ‡ซ๐Ÿ‡ฎ|FJ|๐Ÿ‡ซ๐Ÿ‡ฏ|FM|๐Ÿ‡ซ๐Ÿ‡ฒ|FR|๐Ÿ‡ซ๐Ÿ‡ท|GA|๐Ÿ‡ฌ๐Ÿ‡ฆ|GB|๐Ÿ‡ฌ๐Ÿ‡ง|GD|๐Ÿ‡ฌ๐Ÿ‡ฉ|GE|๐Ÿ‡ฌ๐Ÿ‡ช|GH|๐Ÿ‡ฌ๐Ÿ‡ญ|GM|๐Ÿ‡ฌ๐Ÿ‡ฒ|GN|๐Ÿ‡ฌ๐Ÿ‡ณ|GQ|๐Ÿ‡ฌ๐Ÿ‡ถ|GR|๐Ÿ‡ฌ๐Ÿ‡ท|GT|๐Ÿ‡ฌ๐Ÿ‡น|GW|๐Ÿ‡ฌ๐Ÿ‡ผ|GY|๐Ÿ‡ฌ๐Ÿ‡พ|HN|๐Ÿ‡ญ๐Ÿ‡ณ|HR|๐Ÿ‡ญ๐Ÿ‡ท|HT|๐Ÿ‡ญ๐Ÿ‡น|HU|๐Ÿ‡ญ๐Ÿ‡บ|ID|๐Ÿ‡ฎ๐Ÿ‡ฉ|IE|๐Ÿ‡ฎ๐Ÿ‡ช|IL|๐Ÿ‡ฎ๐Ÿ‡ฑ|IN|๐Ÿ‡ฎ๐Ÿ‡ณ|IQ|๐Ÿ‡ฎ๐Ÿ‡ถ|IS|๐Ÿ‡ฎ๐Ÿ‡ธ|IT|๐Ÿ‡ฎ๐Ÿ‡น|JM|๐Ÿ‡ฏ๐Ÿ‡ฒ|JO|๐Ÿ‡ฏ๐Ÿ‡ด|JP|๐Ÿ‡ฏ๐Ÿ‡ต|KE|๐Ÿ‡ฐ๐Ÿ‡ช|KG|๐Ÿ‡ฐ๐Ÿ‡ฌ|KH|๐Ÿ‡ฐ๐Ÿ‡ญ|KI|๐Ÿ‡ฐ๐Ÿ‡ฎ|KM|๐Ÿ‡ฐ๐Ÿ‡ฒ|KN|๐Ÿ‡ฐ๐Ÿ‡ณ|KR|๐Ÿ‡ฐ๐Ÿ‡ท|KW|๐Ÿ‡ฐ๐Ÿ‡ผ|KZ|๐Ÿ‡ฐ๐Ÿ‡ฟ|LA|๐Ÿ‡ฑ๐Ÿ‡ฆ|LB|๐Ÿ‡ฑ๐Ÿ‡ง|LC|๐Ÿ‡ฑ๐Ÿ‡จ|LI|๐Ÿ‡ฑ๐Ÿ‡ฎ|LK|๐Ÿ‡ฑ๐Ÿ‡ฐ|LR|๐Ÿ‡ฑ๐Ÿ‡ท|LS|๐Ÿ‡ฑ๐Ÿ‡ธ|LT|๐Ÿ‡ฑ๐Ÿ‡น|LU|๐Ÿ‡ฑ๐Ÿ‡บ|LV|๐Ÿ‡ฑ๐Ÿ‡ป|LY|๐Ÿ‡ฑ๐Ÿ‡พ|MA|๐Ÿ‡ฒ๐Ÿ‡ฆ|MC|๐Ÿ‡ฒ๐Ÿ‡จ|MD|๐Ÿ‡ฒ๐Ÿ‡ฉ|ME|๐Ÿ‡ฒ๐Ÿ‡ช|MG|๐Ÿ‡ฒ๐Ÿ‡ฌ|MH|๐Ÿ‡ฒ๐Ÿ‡ญ|MK|๐Ÿ‡ฒ๐Ÿ‡ฐ|ML|๐Ÿ‡ฒ๐Ÿ‡ฑ|MM|๐Ÿ‡ฒ๐Ÿ‡ฒ|MN|๐Ÿ‡ฒ๐Ÿ‡ณ|MR|๐Ÿ‡ฒ๐Ÿ‡ท|MT|๐Ÿ‡ฒ๐Ÿ‡น|MU|๐Ÿ‡ฒ๐Ÿ‡บ|MV|๐Ÿ‡ฒ๐Ÿ‡ป|MW|๐Ÿ‡ฒ๐Ÿ‡ผ|MX|๐Ÿ‡ฒ๐Ÿ‡ฝ|MY|๐Ÿ‡ฒ๐Ÿ‡พ|MZ|๐Ÿ‡ฒ๐Ÿ‡ฟ|NA|๐Ÿ‡ณ๐Ÿ‡ฆ|NE|๐Ÿ‡ณ๐Ÿ‡ช|NG|๐Ÿ‡ณ๐Ÿ‡ฌ|NI|๐Ÿ‡ณ๐Ÿ‡ฎ|NL|๐Ÿ‡ณ๐Ÿ‡ฑ|NO|๐Ÿ‡ณ๐Ÿ‡ด|NP|๐Ÿ‡ณ๐Ÿ‡ต|NR|๐Ÿ‡ณ๐Ÿ‡ท|NZ|๐Ÿ‡ณ๐Ÿ‡ฟ|OM|๐Ÿ‡ด๐Ÿ‡ฒ|PA|๐Ÿ‡ต๐Ÿ‡ฆ|PE|๐Ÿ‡ต๐Ÿ‡ช|PG|๐Ÿ‡ต๐Ÿ‡ฌ|PH|๐Ÿ‡ต๐Ÿ‡ญ|PK|๐Ÿ‡ต๐Ÿ‡ฐ|PL|๐Ÿ‡ต๐Ÿ‡ฑ|PS|๐Ÿ‡ต๐Ÿ‡ธ|PT|๐Ÿ‡ต๐Ÿ‡น|PW|๐Ÿ‡ต๐Ÿ‡ผ|PY|๐Ÿ‡ต๐Ÿ‡พ|QA|๐Ÿ‡ถ๐Ÿ‡ฆ|RO|๐Ÿ‡ท๐Ÿ‡ด|RS|๐Ÿ‡ท๐Ÿ‡ธ|RW|๐Ÿ‡ท๐Ÿ‡ผ|SA|๐Ÿ‡ธ๐Ÿ‡ฆ|SB|๐Ÿ‡ธ๐Ÿ‡ง|SC|๐Ÿ‡ธ๐Ÿ‡จ|SD|๐Ÿ‡ธ๐Ÿ‡ฉ|SE|๐Ÿ‡ธ๐Ÿ‡ช|SG|๐Ÿ‡ธ๐Ÿ‡ฌ|SI|๐Ÿ‡ธ๐Ÿ‡ฎ|SK|๐Ÿ‡ธ๐Ÿ‡ฐ|SL|๐Ÿ‡ธ๐Ÿ‡ฑ|SM|๐Ÿ‡ธ๐Ÿ‡ฒ|SN|๐Ÿ‡ธ๐Ÿ‡ณ|SO|๐Ÿ‡ธ๐Ÿ‡ด|SR|๐Ÿ‡ธ๐Ÿ‡ท|SS|๐Ÿ‡ธ๐Ÿ‡ธ|ST|๐Ÿ‡ธ๐Ÿ‡น|SV|๐Ÿ‡ธ๐Ÿ‡ป|SZ|๐Ÿ‡ธ๐Ÿ‡ฟ|TD|๐Ÿ‡น๐Ÿ‡ฉ|TG|๐Ÿ‡น๐Ÿ‡ฌ|TH|๐Ÿ‡น๐Ÿ‡ญ|TJ|๐Ÿ‡น๐Ÿ‡ฏ|TL|๐Ÿ‡น๐Ÿ‡ฑ|TM|๐Ÿ‡น๐Ÿ‡ฒ|TN|๐Ÿ‡น๐Ÿ‡ณ|TO|๐Ÿ‡น๐Ÿ‡ด|TR|๐Ÿ‡น๐Ÿ‡ท|TT|๐Ÿ‡น๐Ÿ‡น|TV|๐Ÿ‡น๐Ÿ‡ป|TW|๐Ÿ‡น๐Ÿ‡ผ|TZ|๐Ÿ‡น๐Ÿ‡ฟ|UA|๐Ÿ‡บ๐Ÿ‡ฆ|UG|๐Ÿ‡บ๐Ÿ‡ฌ|US|๐Ÿ‡บ๐Ÿ‡ธ|UY|๐Ÿ‡บ๐Ÿ‡พ|UZ|๐Ÿ‡บ๐Ÿ‡ฟ|VA|๐Ÿ‡ป๐Ÿ‡ฆ|VC|๐Ÿ‡ป๐Ÿ‡จ|VN|๐Ÿ‡ป๐Ÿ‡ณ|VU|๐Ÿ‡ป๐Ÿ‡บ|WS|๐Ÿ‡ผ๐Ÿ‡ธ|YE|๐Ÿ‡พ๐Ÿ‡ช|ZA|๐Ÿ‡ฟ๐Ÿ‡ฆ|ZM|๐Ÿ‡ฟ๐Ÿ‡ฒ|ZW|๐Ÿ‡ฟ๐Ÿ‡ผ",
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/chatgpt.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅพฎ่ฝฏๆœๅŠก",
            "type": "select",
            "proxies": ["ๅ…จๅฑ€็›ด่ฟž", "่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/microsoft.svg"
        },
        {
            ...groupBaseOption,
            "name": "่‹นๆžœๆœๅŠก",
            "type": "select",
            "proxies": ["่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)", "ๅ…จๅฑ€็›ด่ฟž"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/apple.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅนฟๅ‘Š่ฟ‡ๆปค",
            "type": "select",
            "proxies": ["REJECT", "DIRECT"],
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/bug.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅ…จๅฑ€็›ด่ฟž",
            "type": "select",
            "proxies": ["DIRECT", "่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/link.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๅ…จๅฑ€ๆ‹ฆๆˆช",
            "type": "select",
            "proxies": ["REJECT", "DIRECT"],
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/block.svg"
        },
        {
            ...groupBaseOption,
            "name": "ๆผ็ฝ‘ไน‹้ฑผ",
            "type": "select",
            "proxies": ["่Š‚็‚น้€‰ๆ‹ฉ", "ๅปถ่ฟŸ้€‰ไผ˜", "ๆ•…้šœ่ฝฌ็งป", "่ดŸ่ฝฝๅ‡่กก(ๆ•ฃๅˆ—)", "่ดŸ่ฝฝๅ‡่กก(่ฝฎ่ฏข)", "ๅ…จๅฑ€็›ด่ฟž"],
            "include-all": true,
            "icon": "https://fastly.jsdelivr.net/gh/clash-verge-rev/clash-verge-rev.github.io@main/docs/assets/icons/fish.svg"
        }
        ];
    
        // ่ฆ†็›–ๅŽŸ้…็ฝฎไธญ็š„่ง„ๅˆ™
        config["rule-providers"] = ruleProviders;
        config["rules"] = rules;
    
        // ่ฟ”ๅ›žไฟฎๆ”นๅŽ็š„้…็ฝฎ
        return config;
    }
  2. Step 2. Paste the script: Go to your Profiles and right click the used profile and click the option "Extend Script"
  3. Step 3. Active the script: Paste the script and click the button "Save" to active the script

Important Notes ๐Ÿ›‘

Troubleshooting: If you face any issues, try the following steps:

  1. Disconnect -> Change Server -> Reconnect
  2. Refresh the server list and reconnect
  • FAIR USAGE PLEASE NOTE THAT ALL SERVERS PROHIBIT BT-TYPE (WHAT IS BT?) DOWNLOADS, AND ANY ABUSIVE BEHAVIOR SUCH AS NON-BT EXCESSIVE DOWNLOADING. SERVERS MARKED AS โ€œNO DOWNLOADINGโ€ STRICTLY PROHIBIT ANY TYPE OF DOWNLOAD. VIOLATORS WILL BE BANNED.
  • Data Security: Telespeeder defaults to end-to-end encryption for the safety of your data and server integrity. This might increase latency and slightly reduce connection speeds, but it's for the better! Unencrypted connections may be introduced in the future, so stay tuned.

Buckle up and enjoy your turbocharged gaming experience with Telespeeder! ๐ŸŽฎ๐Ÿ”ฅ

Share:
Leave A Comment