首页 > 其他分享 >How To open Chrome with proxy server

How To open Chrome with proxy server

时间:2024-11-17 17:43:17浏览次数:3  
标签:settings Chrome shortcut server How proxy -- open

To open Google Chrome with a proxy server, you can use the command-line options or configure the proxy settings in Chrome. Here’s how to do it:


1. Use Command-Line Options

You can launch Chrome with proxy settings directly from the command line or a shortcut:

Windows
  1. Create a shortcut for Chrome (right-click the Chrome icon > “Create shortcut”).
  2. Right-click the shortcut and choose “Properties.”
  3. In the Target field, append the proxy settings:
    --proxy-server=http://[proxy_address]:[port]
    
    For example:
    "C:\Program Files\Google\Chrome\Application\chrome.exe" --proxy-server=http://192.168.1.1:8080
    
  4. Click OK and use this shortcut to open Chrome with the proxy.
macOS
  1. Open Terminal.
  2. Use the following command:
    open -a "Google Chrome" --args --proxy-server=http://[proxy_address]:[port]
    
    Replace [proxy_address] and [port] with your proxy server details.
Linux
  1. Open a terminal.
  2. Run Chrome with the proxy argument:
    google-chrome --proxy-server=http://[proxy_address]:[port]
    

2. Configure Proxy in Chrome Settings

If you want a persistent setup:

  1. Open Chrome and navigate to chrome://settings.
  2. Scroll down and click Advanced.
  3. Under System, click Open your computer’s proxy settings.
  4. Configure the proxy settings for your operating system:
    • Windows: Modify proxy settings in the “Internet Properties” dialog.
    • macOS: Adjust the proxy settings in “Network Preferences.”
    • Linux: Configure the proxy through your system’s network settings.

3. Use an Extension (Optional)

Chrome extensions like Proxy SwitchyOmega or FoxyProxy allow you to manage proxy settings dynamically without modifying system or command-line settings.


Let me know if you need further assistance!

标签:settings,Chrome,shortcut,server,How,proxy,--,open
From: https://blog.csdn.net/yuguo_im/article/details/143835662

相关文章

  • CTFshow信息收集
    CTFshow信息收集web1查看源代码就可以看到flagweb2ctrl++u得到flagweb3抓个包就可以查看flagweb4访问/robots.txt得到目录访问一下web5访问index.phps然后会下载一个文件文件中有flag。web6目录扫到www.zip啊?/fl000.txt得到了最终的flagweb7目录扫到访问web8还是扫目录访问web9访......
  • CTFshow命令执行
    CTFshow命令执行web291/?c=system("tacfla?.php");2/?c=system("tacf*.php>1.txt");再访问1.txtweb301<?php/*#-*-coding:utf-8-*-#@Author:h1xa#@Date:2020-09-0400:12:34#@LastModifiedby:h1xa#@LastModifiedtime:2020-09-0400:......
  • CTFshowPHP特性
    CTFshowPHP特性web89<?php/*#-*-coding:utf-8-*-#@Author:h1xa#@Date:2020-09-1611:25:09#@LastModifiedby:h1xa#@LastModifiedtime:2020-09-1815:38:51#@email:[email protected]#@link:https://ctfer.com*/include("flag.php");highlight......
  • ctfshow图片刷题
    misc1打开就是flagctfshow{22f1fb91fc4169f1c9411ce632a0ed8d}misc2改后缀名pngctfshow{6f66202f21ad22a2a19520cdd3f69e7b}misc3.bpg的图片用这个工具打开https://bellard.org/bpg/ctfshow{aade771916df7cde3009c0e631f9910d}misc4逐个改后缀名就可以得到图片,......
  • Open WebUI
    OpenWebUI官网:https://openwebui.com/github地址:https://github.com/open-webui/open-webuiOpenWebUI是一个可扩展、功能丰富、用户友好的自托管AI界面,完全离线操作。它支持各种LLM运行程序,包括Ollama和OpenAI兼容的API。可使用pip安装:pipinstallopen-webui运行:op......
  • 【OpenOCD 与 FT4232H 专栏 4 -- FT4232H 实现 USB 转 GPIO】
    文章目录FT4232H概述MPSSE功能应用示例GPIO控制通道C和D配置典型应用FT4232H概述FT4232H是一款由FTDI提供的多功能USB转串行接口芯片,广泛应用于各种电子和嵌入式系统中。它具有四个独立的通道,每个通道可以配置为不同的模式以支持多种通信协议。FT423......
  • 【OpenOCD 与 FT4232H 专栏 1 -- FT4232H 驱动安装】
    文章目录OpenOCDFTDI驱动安装FTDI设备信息获取OpenOCDopenocd全名为OpenOn-ChipDebugger,是一个自由开放的片上调试工具和编程工具,目前主流调试器几乎都支持,具体可以查看OpenOn-ChipDebugger:OpenOCDUser’sGuide。准备配置文件:FT4232HDebugerAdapter......
  • OpenAI模型whisper 音频转文本
    最近有一个音频转文本的需求,了解到了OpenAI的whisper模型可以实现。Whisper是OpenAI提供的一个通用语音识别模型,支持多语言的音频转文本功能,并具有较高的准确性。它的主要用途包括自动语音识别 (ASR)、语言翻译(将音频直接翻译成英文文本)等。Whisper支持将长时间音频文件(......
  • nternLM Camp4 L1G600 OpenCompass 评测书生大模型实践
    本任务需要使用30%A100开发机文章目录前言一、使用OpenCompass评测浦语API1.环境配置2.模型配置3.数据集配置4.运行评测二、评测本地模型1.环境配置2.数据集下载3.加载本地模型进行评测三、将本地模型通过部署成API服务再评测前言本博客是第四期书生大模型......
  • Openlayers的多边形高级交互
    概述本文主要介绍Openlayers中,两个(或多个)多边形的高级交互,包括:并集,交集和差集运算.概念理解并集(Union):并集指的是将两个几何对象的所有区域合并在一起。即,结果是包含了两个对象所有区域的集合。如果两个几何形状有重叠部分,合并时不会重复这些部分。几何......