入门指南——在无痕模式下创建你的第一个浏览器资料

在Incogniton中创建独立的浏览器资料可以让你井然有序,不被发现——非常适合网络研究、社交媒体或电子商务。你下载了这个应用后不知道从哪里开始吗?这份逐步指南能让你快速浏览。

紫色方块,带有无痕标志和3个用户档案

如何创建你的第一个浏览器资料

步骤1:进入Incogniton创建个人资料

进入Incogniton应用创建个人资料。有几种起步方式。点击:

  • 创建左下单人
  • 右侧新侧脸
  • 中间进入配置文件创建
incogniton dashboard creating a new browser profile

步骤2:填写个人资料详情

填写你个人资料的所有细节,添加:

incogniton dashboard creating a new browser profile and entering profile details

随机化指纹

填写完所有细节后,你可以点击 “随机化指纹”按钮。这会导致浏览器配置文件的硬件配置和导航设置随机变化。此设置为可选。

步骤3:添加代理

下一步是给你的第一个浏览器配置文件添加代理。你可以在配置文件概览中点击添加代理,或者在左侧菜单点击代理进入代理设置。请填写以下信息:

点击 “检查代理” 以获取关于该代理的更多信息。

adding a proxy to a browser profile in Incogniton dashboard

选择最适合你需求的代理选项

// The quiz data object stores all questions and their corresponding options const quizData = { q1: { question: "What is your use case?", subtext: "Select an option", options: { geo: { label: "Bypassing geo-restrictions (e.g. YouTube)", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", result: { content: "✅ Use our FREE unblocked proxies.", readMoreLabel: "More info", readMoreLink: "https://incogniton.com/knowledge%20center/guide-how-to-use-incognitons-free-unblocked-proxies/", image: "https://incogniton.com/wp-content/uploads/2025/04/case-studies-proxy-3-e1744889424735.png" } }, multiple: { label: "Multiple account management (e.g. Facebook)", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", next: "q2" }, ad: { label: "Ad spying", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", next: "q2" }, ticket: { label: "Ticketing", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", next: "q2" } } }, q2: { question: "What location do you need proxies from?", subtext: "Choose a location", options: { us: { label: "United States", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", result: { content: "Buy from the Incogniton Proxy Shop.", readMoreLabel: "More info", readMoreLink: "https://incogniton.com/knowledge%20center/guide-how-to-buy-proxies-via-incognitons-proxy-store/", image: "https://incogniton.com/wp-content/uploads/2025/04/case-studies-proxy-3-e1744889424735.png" } }, uk: { label: "United Kingdom", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", result: { content: "Buy from the Incogniton Proxy Shop.", readMoreLabel: "More info", readMoreLink: "https://incogniton.com/knowledge%20center/guide-how-to-buy-proxies-via-incognitons-proxy-store/", image: "https://incogniton.com/wp-content/uploads/2025/04/case-studies-proxy-3-e1744889424735.png" } }, other: { label: "Other countries", image: "https://incogniton.com/wp-content/uploads/2024/07/Incogniton_icon-Ellipse.svg", result: { content: "Buy from one of our trusted partners.", readMoreLabel: "More info", readMoreLink: "https://incogniton.com/proxy-integrations/", image: "https://incogniton.com/wp-content/uploads/2025/04/case-studies-proxy-3-e1744889424735.png" } } } } }; // The current question being shown (starts with q1) let currentQuestion = "q1"; // A stack to track the question history for back navigation const questionHistory = []; /** * Initializes and starts the quiz * - Resets the state * - Clears previous results * - Renders the first question */ function startQuiz() { currentQuestion = "q1"; questionHistory.length = 0; // clear history document.getElementById("quiz-container").style.display = "flex"; document.getElementById("result-container").style.display = "none"; document.getElementById("result-container").innerHTML = ""; document.getElementById("restart-btn").style.display = "none"; document.getElementById("quiz-content").innerHTML = ""; renderQuestion(); } /** * Renders the current question: * - Displays question text and subtext * - Dynamically creates answer buttons with images and labels */ function renderQuestion() { const qData = quizData[currentQuestion]; const header = document.getElementById("quiz-header"); const contentDiv = document.getElementById("quiz-content"); header.innerHTML = ""; contentDiv.innerHTML = ""; // Inject question and optional subtext header.innerHTML = ` ${qData.question} ${qData.subtext ? `

${qData.subtext}

` : ""} `; // Loop through the options and generate buttons for (let key in qData.options) { const option = qData.options[key]; const btn = document.createElement("button"); btn.innerHTML = ` ${option.image ? `` : ""} ${option.label} `; // Set click behavior to handleAnswer btn.onclick = () => handleAnswer(key); contentDiv.appendChild(btn); } // Show the back button only if we have a previous step document.getElementById("previous-btn").style.display = questionHistory.length > 0 ? "inline-block" : "none"; } /** * Handles user selecting an answer * - If option has a `result`, show it * - If option has a `next`, proceed to next question */ function handleAnswer(key) { const selected = quizData[currentQuestion].options[key]; if (selected.result) { document.getElementById("quiz-container").style.display = "none"; showResult(selected.result); } else if (selected.next) { questionHistory.push(currentQuestion); // save current question in history currentQuestion = selected.next; renderQuestion(); } } /** * Navigate back to the previous question */ function goToPrevious() { if (questionHistory.length > 0) { currentQuestion = questionHistory.pop(); renderQuestion(); } } /** * Displays the result block with: * - Text * - Optional image * - Link to read more */ function showResult(resultObj) { const resultContainer = document.getElementById("result-container"); let resultHTML = ""; if (resultObj.image) { resultHTML += ``; } if (resultObj.content) { resultHTML += `${resultObj.content}`; } if (resultObj.readMoreLabel && resultObj.readMoreLink) { resultHTML += ` ${resultObj.readMoreLabel} `; } resultContainer.innerHTML = resultHTML; resultContainer.style.display = "block"; document.getElementById("restart-btn").style.display = "inline-flex"; } // Start quiz when the page finishes loading document.addEventListener("DOMContentLoaded", startQuiz);

请在下方了解更多代理选项。

Incogniton 提供的免费代理

在个人资料概览中打开 “免费未封锁的匿名代理 ”,即可使用无痕代理的免费内置代理功能。

内置代理商店

进入Incogniton应用,在左侧菜单点击代理 商店 。选择代理类型(移动、住宅、数据中心或ISP),选择所需代理数量,然后选择服务提供商和地理位置。填写您的付款信息并完成付款流程。

外部代理供应商

选择一个你希望与 Incogniton 合作的外部 代理供应商 ,并将代理详情添加到你的浏览器资料中。

步骤4:开始使用你的Incogniton个人资料

点击 创建个人资料 以完成流程。你刚刚在Incogniton中创建了你的第一个浏览器资料!在个人资料概览中选择 “开始” ,开始浏览。

目录

常见问题解答

是的,Incogniton 是一款桌面应用程序,适用于 Windows 和 Mac 操作系统。你可以 在这里下载该应用

代理作为用户设备与互联网之间的中介,意味着你可以间接访问网站。互联网流量会通过代理服务器重新路由,代理服务器代表你获取数据并隐藏你的IP地址。

建议为每个浏览器配置文件使用不同的代理。这有助于避免封禁或封禁,防止指纹链接,并保持个人资料的独特性。特别是在账户管理方面,我们建议每个配置文件使用不同的代理。

  • 免费内置代理
  • 车队管理
  • 数据存储
  • 粘贴为人类打字
  • 数据同步
  • 硒整合
  • Cookie管理
  • 批量创建者配置文件
  • 指纹生成器

要使用 团队管理功能,请在Incogniton应用中进入 团队管理 ,点击 “新团队成员”。填写所有详细信息后点击保存。现在,你可以为用户创建自定义角色,并为他们分配团队成员。