Google Chrome proxy settings?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
When I try to set Google Chrome's proxy settings (on chrome://linux-proxy-config/), I get the following message:
When running Google Chrome under a supported desktop environment, the
system proxy settings will be used. However, either your system is not
supported or there was a problem launching your system configuration.
But you can still configure via the command line. Please see man
google-chrome-stable for more information on flags and environment
variables.
I need to set proxy settings to use Chrome, but I don't want to be setting them in the command line every time I use Chrome. Is there a way to set these settings permanently?
Also, is there an option in Chrome so that it doesn't use proxy for specific domains (analogous to the No proxy for
setting in Firefox)?
google-chrome proxy
add a comment |
When I try to set Google Chrome's proxy settings (on chrome://linux-proxy-config/), I get the following message:
When running Google Chrome under a supported desktop environment, the
system proxy settings will be used. However, either your system is not
supported or there was a problem launching your system configuration.
But you can still configure via the command line. Please see man
google-chrome-stable for more information on flags and environment
variables.
I need to set proxy settings to use Chrome, but I don't want to be setting them in the command line every time I use Chrome. Is there a way to set these settings permanently?
Also, is there an option in Chrome so that it doesn't use proxy for specific domains (analogous to the No proxy for
setting in Firefox)?
google-chrome proxy
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11
add a comment |
When I try to set Google Chrome's proxy settings (on chrome://linux-proxy-config/), I get the following message:
When running Google Chrome under a supported desktop environment, the
system proxy settings will be used. However, either your system is not
supported or there was a problem launching your system configuration.
But you can still configure via the command line. Please see man
google-chrome-stable for more information on flags and environment
variables.
I need to set proxy settings to use Chrome, but I don't want to be setting them in the command line every time I use Chrome. Is there a way to set these settings permanently?
Also, is there an option in Chrome so that it doesn't use proxy for specific domains (analogous to the No proxy for
setting in Firefox)?
google-chrome proxy
When I try to set Google Chrome's proxy settings (on chrome://linux-proxy-config/), I get the following message:
When running Google Chrome under a supported desktop environment, the
system proxy settings will be used. However, either your system is not
supported or there was a problem launching your system configuration.
But you can still configure via the command line. Please see man
google-chrome-stable for more information on flags and environment
variables.
I need to set proxy settings to use Chrome, but I don't want to be setting them in the command line every time I use Chrome. Is there a way to set these settings permanently?
Also, is there an option in Chrome so that it doesn't use proxy for specific domains (analogous to the No proxy for
setting in Firefox)?
google-chrome proxy
google-chrome proxy
edited Aug 20 '14 at 14:44
becko
asked Aug 20 '14 at 14:28
beckobecko
3,470144280
3,470144280
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11
add a comment |
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11
add a comment |
9 Answers
9
active
oldest
votes
Start Ubuntu Software Center, search for "gksu", then click Install (if not already installed).
Press Alt+F2 and type gksu nautilus
and hit Enter
Type your password then press Ctrl+L and type /usr/share/applications/
and press Enter
Now find google-chrome
and right-click on chrome icon and select "Properties".
Next, Add the following option at the end of command text box, there.
--proxy-server="IP proxy Server:port"
(ex: --proxy-server="127.0.0.1:8080"
)
it's look like this (it's the same for Chrome):
close the window and if the chrome browser is still running, then close the browser and restart again. Finally you can use chrome browser with proxy.
--proxy-bypass-list:
If you want to tell google-chrome to NOT use a proxy with specific domains use --proxy-bypass-list
command. This command specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect
or --no-proxy-server
are also specified. This is a comma-separated list of bypass rules.
Here is List of Chromium Command Line that used in google-chrome too.
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the optionNo proxy for
in Firefox?
– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
@user2813274 you should use this syntaxuser:password@proxy:port
(for an example:--proxy-server="USERhere:PASShere@127.0.0.1:8080"
)
– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
|
show 1 more comment
Google Chrome and Chromium obey the environment proxy variables (http_proxy
, no_proxy
, etc.) and the proxies set via gsettings
. gsettings
comes preinstalled on [XL]ubuntu, so this is one way which doesn't need sudo
privileges.
The keys org.gnome.system.proxy.http[s].{host,port,authentication-user,authentication-user}
(and similar options for FTP and SOCKS proxies) and the proxy autoconfiguration key org.gnome.system.proxy.autoconfig_url
can be used for this:
gsettings set org.gnome.system.proxy.http host "proxy.server.fqdn"
gsettings set org.gnome.system.proxy.http port "3128"
A proxy exception list can be set using the ignore-hosts
key:
gsettings set org.gnome.system.proxy ignore-hosts "['localhost', '127.0.0.0/8', '::1', '*.some.domain', '10.0.0.0/8']"
A no_proxy
environment variable would look like:
export no_proxy="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
export NO_PROXY="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
You can set this in ~/.profile
or ~/.pam_environment
(without the export
).
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
add a comment |
Just execute below command in terminal
sudo nano /usr/share/applications/google-chrome.desktop
in Command value append below line
--proxy-server="192.168.1.251:8080"
Change it with your proxy. its example of non - authentication proxy. For a proxy with authentication one should use,
--proxy-server="username:password@proxy_address:port"
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
forchromium
, the particular file is/usr/share/applications/chromium-browser.desktop
and the particular setionc isExec
- you must put the proxy line into allExec
appearences across this file
– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck withwaiting for proxy server
. so adding--no-proxy-server
option saves the day. Thanks.
– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
add a comment |
For Unity: In "system settings", go to "network" then "network proxy" : you can then set your proxy system wide.
For setting user and password , set it like this :
user:password@proxy:port
For Lubuntu , Xubuntu etc...: look this thread How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio?
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
add a comment |
Semi-automated way
I have found @kasiya answer to be most helpful.
However, every update of Google Chrome resulted in resetting the desktop entry and proxy
settings. It is quite frustrating editing it again, and again.
Instead of manual work, you can change the entry with a short script.
Simply paste it to terminal:
sudo sed '/^Exec/s/$/ --proxy-server="10.0.2.2:3128"/' /usr/share/applications/google-chrome.desktop -i
Obviously, you need to change the IP to your proxy server.
This appends all lines starting with Exec
with your proxy setting, which is the manual way of setting the proxy.
Enjoy!
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to everyExec
instance. Just the main one (namedChromium Web Browser
) is usually enough. The rest ofExec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.
– jesjimher
Apr 9 '18 at 8:07
add a comment |
How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? points to the file /etc/environment
where you can insert the following lines as root:
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
The top answer (very elaborate) also contains a script to enable/disable on demand. (But if you need that, Firefox has an options page for choosing the proxy and you might want to consider using it).
add a comment |
When the proxy settings are in the environment proxy variables, Chrome did not work by putting the full proxy settings on the launcher.
--proxy-server="IP proxy Server:port" (ex: --proxy-server="127.0.0.1:8080")
But it worked when I put it to detect the automatic configurations
--proxy-auto-detect
And it worked in Vivaldi.
add a comment |
One option I use is the Proxy SwitchyOmega extension. It allows some IP addresses or domains to be exempted, as you ask for.
It has a nice GUI instead of needing to deal with command line arguments. It also supports Chrome Sync, so you can get up and running with your proxy settings on a new computer quickly.
You can also set it up so that using the proxy can be switched on or off with a single click.
add a comment |
/usr/bin/google-chrome-stable %U --proxy-server="socks5://127.0.0.1:9050" --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE 127.0.0.1"
See here: https://superuser.com/questions/321804/manually-configuring-proxy-settings-of-google-chrome-on-ubuntu
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f513840%2fgoogle-chrome-proxy-settings%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
9 Answers
9
active
oldest
votes
9 Answers
9
active
oldest
votes
active
oldest
votes
active
oldest
votes
Start Ubuntu Software Center, search for "gksu", then click Install (if not already installed).
Press Alt+F2 and type gksu nautilus
and hit Enter
Type your password then press Ctrl+L and type /usr/share/applications/
and press Enter
Now find google-chrome
and right-click on chrome icon and select "Properties".
Next, Add the following option at the end of command text box, there.
--proxy-server="IP proxy Server:port"
(ex: --proxy-server="127.0.0.1:8080"
)
it's look like this (it's the same for Chrome):
close the window and if the chrome browser is still running, then close the browser and restart again. Finally you can use chrome browser with proxy.
--proxy-bypass-list:
If you want to tell google-chrome to NOT use a proxy with specific domains use --proxy-bypass-list
command. This command specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect
or --no-proxy-server
are also specified. This is a comma-separated list of bypass rules.
Here is List of Chromium Command Line that used in google-chrome too.
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the optionNo proxy for
in Firefox?
– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
@user2813274 you should use this syntaxuser:password@proxy:port
(for an example:--proxy-server="USERhere:PASShere@127.0.0.1:8080"
)
– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
|
show 1 more comment
Start Ubuntu Software Center, search for "gksu", then click Install (if not already installed).
Press Alt+F2 and type gksu nautilus
and hit Enter
Type your password then press Ctrl+L and type /usr/share/applications/
and press Enter
Now find google-chrome
and right-click on chrome icon and select "Properties".
Next, Add the following option at the end of command text box, there.
--proxy-server="IP proxy Server:port"
(ex: --proxy-server="127.0.0.1:8080"
)
it's look like this (it's the same for Chrome):
close the window and if the chrome browser is still running, then close the browser and restart again. Finally you can use chrome browser with proxy.
--proxy-bypass-list:
If you want to tell google-chrome to NOT use a proxy with specific domains use --proxy-bypass-list
command. This command specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect
or --no-proxy-server
are also specified. This is a comma-separated list of bypass rules.
Here is List of Chromium Command Line that used in google-chrome too.
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the optionNo proxy for
in Firefox?
– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
@user2813274 you should use this syntaxuser:password@proxy:port
(for an example:--proxy-server="USERhere:PASShere@127.0.0.1:8080"
)
– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
|
show 1 more comment
Start Ubuntu Software Center, search for "gksu", then click Install (if not already installed).
Press Alt+F2 and type gksu nautilus
and hit Enter
Type your password then press Ctrl+L and type /usr/share/applications/
and press Enter
Now find google-chrome
and right-click on chrome icon and select "Properties".
Next, Add the following option at the end of command text box, there.
--proxy-server="IP proxy Server:port"
(ex: --proxy-server="127.0.0.1:8080"
)
it's look like this (it's the same for Chrome):
close the window and if the chrome browser is still running, then close the browser and restart again. Finally you can use chrome browser with proxy.
--proxy-bypass-list:
If you want to tell google-chrome to NOT use a proxy with specific domains use --proxy-bypass-list
command. This command specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect
or --no-proxy-server
are also specified. This is a comma-separated list of bypass rules.
Here is List of Chromium Command Line that used in google-chrome too.
Start Ubuntu Software Center, search for "gksu", then click Install (if not already installed).
Press Alt+F2 and type gksu nautilus
and hit Enter
Type your password then press Ctrl+L and type /usr/share/applications/
and press Enter
Now find google-chrome
and right-click on chrome icon and select "Properties".
Next, Add the following option at the end of command text box, there.
--proxy-server="IP proxy Server:port"
(ex: --proxy-server="127.0.0.1:8080"
)
it's look like this (it's the same for Chrome):
close the window and if the chrome browser is still running, then close the browser and restart again. Finally you can use chrome browser with proxy.
--proxy-bypass-list:
If you want to tell google-chrome to NOT use a proxy with specific domains use --proxy-bypass-list
command. This command specifies a list of hosts for whom we bypass proxy settings and use direct connections. Ignored if --proxy-auto-detect
or --no-proxy-server
are also specified. This is a comma-separated list of bypass rules.
Here is List of Chromium Command Line that used in google-chrome too.
edited Jun 12 '15 at 15:37
Neil Cafferkey
31
31
answered Aug 20 '14 at 15:45
αғsнιηαғsнιη
25.1k23100162
25.1k23100162
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the optionNo proxy for
in Firefox?
– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
@user2813274 you should use this syntaxuser:password@proxy:port
(for an example:--proxy-server="USERhere:PASShere@127.0.0.1:8080"
)
– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
|
show 1 more comment
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the optionNo proxy for
in Firefox?
– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
@user2813274 you should use this syntaxuser:password@proxy:port
(for an example:--proxy-server="USERhere:PASShere@127.0.0.1:8080"
)
– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
1
1
How do I tell google chrome to NOT use a proxy with specific domains? Something like the option
No proxy for
in Firefox?– becko
Aug 20 '14 at 15:55
How do I tell google chrome to NOT use a proxy with specific domains? Something like the option
No proxy for
in Firefox?– becko
Aug 20 '14 at 15:55
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
How would one specify the username/password when using --proxy-server?
– user2813274
Jan 21 '15 at 16:50
2
2
@user2813274 you should use this syntax
user:password@proxy:port
(for an example: --proxy-server="USERhere:PASShere@127.0.0.1:8080"
)– αғsнιη
Jan 21 '15 at 17:00
@user2813274 you should use this syntax
user:password@proxy:port
(for an example: --proxy-server="USERhere:PASShere@127.0.0.1:8080"
)– αғsнιη
Jan 21 '15 at 17:00
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
What is the syntax for --proxy-bypass-list? Should I just list the bypassed hosts after it? Should I use ="list"? List entries are separated by what? Semicolons? Commas? Can you add an example to your answer?
– Calmarius
May 22 '15 at 11:51
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
@αғsнιη can you? I thought this was not supported? (I get this error net::ERR_NO_SUPPORTED_PROXIES ) at least on Chrome,...
– hayd
Apr 5 '18 at 0:57
|
show 1 more comment
Google Chrome and Chromium obey the environment proxy variables (http_proxy
, no_proxy
, etc.) and the proxies set via gsettings
. gsettings
comes preinstalled on [XL]ubuntu, so this is one way which doesn't need sudo
privileges.
The keys org.gnome.system.proxy.http[s].{host,port,authentication-user,authentication-user}
(and similar options for FTP and SOCKS proxies) and the proxy autoconfiguration key org.gnome.system.proxy.autoconfig_url
can be used for this:
gsettings set org.gnome.system.proxy.http host "proxy.server.fqdn"
gsettings set org.gnome.system.proxy.http port "3128"
A proxy exception list can be set using the ignore-hosts
key:
gsettings set org.gnome.system.proxy ignore-hosts "['localhost', '127.0.0.0/8', '::1', '*.some.domain', '10.0.0.0/8']"
A no_proxy
environment variable would look like:
export no_proxy="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
export NO_PROXY="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
You can set this in ~/.profile
or ~/.pam_environment
(without the export
).
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
add a comment |
Google Chrome and Chromium obey the environment proxy variables (http_proxy
, no_proxy
, etc.) and the proxies set via gsettings
. gsettings
comes preinstalled on [XL]ubuntu, so this is one way which doesn't need sudo
privileges.
The keys org.gnome.system.proxy.http[s].{host,port,authentication-user,authentication-user}
(and similar options for FTP and SOCKS proxies) and the proxy autoconfiguration key org.gnome.system.proxy.autoconfig_url
can be used for this:
gsettings set org.gnome.system.proxy.http host "proxy.server.fqdn"
gsettings set org.gnome.system.proxy.http port "3128"
A proxy exception list can be set using the ignore-hosts
key:
gsettings set org.gnome.system.proxy ignore-hosts "['localhost', '127.0.0.0/8', '::1', '*.some.domain', '10.0.0.0/8']"
A no_proxy
environment variable would look like:
export no_proxy="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
export NO_PROXY="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
You can set this in ~/.profile
or ~/.pam_environment
(without the export
).
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
add a comment |
Google Chrome and Chromium obey the environment proxy variables (http_proxy
, no_proxy
, etc.) and the proxies set via gsettings
. gsettings
comes preinstalled on [XL]ubuntu, so this is one way which doesn't need sudo
privileges.
The keys org.gnome.system.proxy.http[s].{host,port,authentication-user,authentication-user}
(and similar options for FTP and SOCKS proxies) and the proxy autoconfiguration key org.gnome.system.proxy.autoconfig_url
can be used for this:
gsettings set org.gnome.system.proxy.http host "proxy.server.fqdn"
gsettings set org.gnome.system.proxy.http port "3128"
A proxy exception list can be set using the ignore-hosts
key:
gsettings set org.gnome.system.proxy ignore-hosts "['localhost', '127.0.0.0/8', '::1', '*.some.domain', '10.0.0.0/8']"
A no_proxy
environment variable would look like:
export no_proxy="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
export NO_PROXY="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
You can set this in ~/.profile
or ~/.pam_environment
(without the export
).
Google Chrome and Chromium obey the environment proxy variables (http_proxy
, no_proxy
, etc.) and the proxies set via gsettings
. gsettings
comes preinstalled on [XL]ubuntu, so this is one way which doesn't need sudo
privileges.
The keys org.gnome.system.proxy.http[s].{host,port,authentication-user,authentication-user}
(and similar options for FTP and SOCKS proxies) and the proxy autoconfiguration key org.gnome.system.proxy.autoconfig_url
can be used for this:
gsettings set org.gnome.system.proxy.http host "proxy.server.fqdn"
gsettings set org.gnome.system.proxy.http port "3128"
A proxy exception list can be set using the ignore-hosts
key:
gsettings set org.gnome.system.proxy ignore-hosts "['localhost', '127.0.0.0/8', '::1', '*.some.domain', '10.0.0.0/8']"
A no_proxy
environment variable would look like:
export no_proxy="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
export NO_PROXY="localhost,.some.domain,127.0.0.0/8,10.0.0.0/8"
You can set this in ~/.profile
or ~/.pam_environment
(without the export
).
answered Aug 20 '14 at 19:11
murumuru
1
1
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
add a comment |
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
I have a different experience. Chrome 61.0.3163.100 on Ubuntu 17.04 doesn't seem to use http_proxy and https_proxy vars. They are set for my user in ~/.profile, which is the same user Chrome is started with, but Chrome can't connect..
– Julius
Sep 27 '17 at 11:38
@Julius which DM?
– muru
Sep 27 '17 at 12:35
@Julius which DM?
– muru
Sep 27 '17 at 12:35
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
Dear @muru, can I set a proxy username and password by using gsettings set org.gnome.system.proxy.http ?
– Sorin Postelnicu
Feb 4 at 15:05
add a comment |
Just execute below command in terminal
sudo nano /usr/share/applications/google-chrome.desktop
in Command value append below line
--proxy-server="192.168.1.251:8080"
Change it with your proxy. its example of non - authentication proxy. For a proxy with authentication one should use,
--proxy-server="username:password@proxy_address:port"
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
forchromium
, the particular file is/usr/share/applications/chromium-browser.desktop
and the particular setionc isExec
- you must put the proxy line into allExec
appearences across this file
– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck withwaiting for proxy server
. so adding--no-proxy-server
option saves the day. Thanks.
– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
add a comment |
Just execute below command in terminal
sudo nano /usr/share/applications/google-chrome.desktop
in Command value append below line
--proxy-server="192.168.1.251:8080"
Change it with your proxy. its example of non - authentication proxy. For a proxy with authentication one should use,
--proxy-server="username:password@proxy_address:port"
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
forchromium
, the particular file is/usr/share/applications/chromium-browser.desktop
and the particular setionc isExec
- you must put the proxy line into allExec
appearences across this file
– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck withwaiting for proxy server
. so adding--no-proxy-server
option saves the day. Thanks.
– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
add a comment |
Just execute below command in terminal
sudo nano /usr/share/applications/google-chrome.desktop
in Command value append below line
--proxy-server="192.168.1.251:8080"
Change it with your proxy. its example of non - authentication proxy. For a proxy with authentication one should use,
--proxy-server="username:password@proxy_address:port"
Just execute below command in terminal
sudo nano /usr/share/applications/google-chrome.desktop
in Command value append below line
--proxy-server="192.168.1.251:8080"
Change it with your proxy. its example of non - authentication proxy. For a proxy with authentication one should use,
--proxy-server="username:password@proxy_address:port"
edited Feb 22 '15 at 16:41
souravc
28.1k1378109
28.1k1378109
answered Feb 22 '15 at 10:15
Biren iDream TechnologiesBiren iDream Technologies
9111
9111
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
forchromium
, the particular file is/usr/share/applications/chromium-browser.desktop
and the particular setionc isExec
- you must put the proxy line into allExec
appearences across this file
– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck withwaiting for proxy server
. so adding--no-proxy-server
option saves the day. Thanks.
– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
add a comment |
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
forchromium
, the particular file is/usr/share/applications/chromium-browser.desktop
and the particular setionc isExec
- you must put the proxy line into allExec
appearences across this file
– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck withwaiting for proxy server
. so adding--no-proxy-server
option saves the day. Thanks.
– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
Very nice, and it also works with Chrome apps.
– Alexandre L Telles
Mar 2 '15 at 19:34
for
chromium
, the particular file is /usr/share/applications/chromium-browser.desktop
and the particular setionc is Exec
- you must put the proxy line into all Exec
appearences across this file– ulkas
Oct 22 '15 at 11:29
for
chromium
, the particular file is /usr/share/applications/chromium-browser.desktop
and the particular setionc is Exec
- you must put the proxy line into all Exec
appearences across this file– ulkas
Oct 22 '15 at 11:29
sometime chrome is stuck with
waiting for proxy server
. so adding --no-proxy-server
option saves the day. Thanks.– Rohit Karadkar
May 5 '17 at 12:34
sometime chrome is stuck with
waiting for proxy server
. so adding --no-proxy-server
option saves the day. Thanks.– Rohit Karadkar
May 5 '17 at 12:34
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
The problem with this approach is that every time chromium package gets updated, desktop file is overwritten, and the setting is lost.
– jesjimher
Apr 9 '18 at 7:55
add a comment |
For Unity: In "system settings", go to "network" then "network proxy" : you can then set your proxy system wide.
For setting user and password , set it like this :
user:password@proxy:port
For Lubuntu , Xubuntu etc...: look this thread How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio?
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
add a comment |
For Unity: In "system settings", go to "network" then "network proxy" : you can then set your proxy system wide.
For setting user and password , set it like this :
user:password@proxy:port
For Lubuntu , Xubuntu etc...: look this thread How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio?
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
add a comment |
For Unity: In "system settings", go to "network" then "network proxy" : you can then set your proxy system wide.
For setting user and password , set it like this :
user:password@proxy:port
For Lubuntu , Xubuntu etc...: look this thread How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio?
For Unity: In "system settings", go to "network" then "network proxy" : you can then set your proxy system wide.
For setting user and password , set it like this :
user:password@proxy:port
For Lubuntu , Xubuntu etc...: look this thread How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio?
edited Apr 13 '17 at 12:23
Community♦
1
1
answered Aug 20 '14 at 15:07
laugeolaugeo
2,156179
2,156179
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
add a comment |
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
I am using Lubuntu. Where do I find "System Settings"?
– becko
Aug 20 '14 at 15:10
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Yep, answer was for Unity .May be you use command: export http_proxy="user:password@proxy:port" then command for chrome, in a 2 line script.
– laugeo
Aug 20 '14 at 15:13
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
Google Chrome is currently not taking care of system-wide proxy settings.
– Anto
Jan 28 '15 at 13:06
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
This, IMHO, shoudl be the accepted answer. Google will use the system proxy.
– David Baucum
Jan 19 '16 at 16:13
add a comment |
Semi-automated way
I have found @kasiya answer to be most helpful.
However, every update of Google Chrome resulted in resetting the desktop entry and proxy
settings. It is quite frustrating editing it again, and again.
Instead of manual work, you can change the entry with a short script.
Simply paste it to terminal:
sudo sed '/^Exec/s/$/ --proxy-server="10.0.2.2:3128"/' /usr/share/applications/google-chrome.desktop -i
Obviously, you need to change the IP to your proxy server.
This appends all lines starting with Exec
with your proxy setting, which is the manual way of setting the proxy.
Enjoy!
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to everyExec
instance. Just the main one (namedChromium Web Browser
) is usually enough. The rest ofExec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.
– jesjimher
Apr 9 '18 at 8:07
add a comment |
Semi-automated way
I have found @kasiya answer to be most helpful.
However, every update of Google Chrome resulted in resetting the desktop entry and proxy
settings. It is quite frustrating editing it again, and again.
Instead of manual work, you can change the entry with a short script.
Simply paste it to terminal:
sudo sed '/^Exec/s/$/ --proxy-server="10.0.2.2:3128"/' /usr/share/applications/google-chrome.desktop -i
Obviously, you need to change the IP to your proxy server.
This appends all lines starting with Exec
with your proxy setting, which is the manual way of setting the proxy.
Enjoy!
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to everyExec
instance. Just the main one (namedChromium Web Browser
) is usually enough. The rest ofExec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.
– jesjimher
Apr 9 '18 at 8:07
add a comment |
Semi-automated way
I have found @kasiya answer to be most helpful.
However, every update of Google Chrome resulted in resetting the desktop entry and proxy
settings. It is quite frustrating editing it again, and again.
Instead of manual work, you can change the entry with a short script.
Simply paste it to terminal:
sudo sed '/^Exec/s/$/ --proxy-server="10.0.2.2:3128"/' /usr/share/applications/google-chrome.desktop -i
Obviously, you need to change the IP to your proxy server.
This appends all lines starting with Exec
with your proxy setting, which is the manual way of setting the proxy.
Enjoy!
Semi-automated way
I have found @kasiya answer to be most helpful.
However, every update of Google Chrome resulted in resetting the desktop entry and proxy
settings. It is quite frustrating editing it again, and again.
Instead of manual work, you can change the entry with a short script.
Simply paste it to terminal:
sudo sed '/^Exec/s/$/ --proxy-server="10.0.2.2:3128"/' /usr/share/applications/google-chrome.desktop -i
Obviously, you need to change the IP to your proxy server.
This appends all lines starting with Exec
with your proxy setting, which is the manual way of setting the proxy.
Enjoy!
edited Apr 27 '17 at 9:31
answered Apr 25 '17 at 19:22
AtaisAtais
1413
1413
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to everyExec
instance. Just the main one (namedChromium Web Browser
) is usually enough. The rest ofExec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.
– jesjimher
Apr 9 '18 at 8:07
add a comment |
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to everyExec
instance. Just the main one (namedChromium Web Browser
) is usually enough. The rest ofExec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.
– jesjimher
Apr 9 '18 at 8:07
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to every
Exec
instance. Just the main one (named Chromium Web Browser
) is usually enough. The rest of Exec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.– jesjimher
Apr 9 '18 at 8:07
Since Chrome/mium tends to stay semi-open in the taskbar, there's really no need to append proxy parameters to every
Exec
instance. Just the main one (named Chromium Web Browser
) is usually enough. The rest of Exec
instances are used for actions like opening a new window, which usually happen once the browser is up and running.– jesjimher
Apr 9 '18 at 8:07
add a comment |
How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? points to the file /etc/environment
where you can insert the following lines as root:
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
The top answer (very elaborate) also contains a script to enable/disable on demand. (But if you need that, Firefox has an options page for choosing the proxy and you might want to consider using it).
add a comment |
How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? points to the file /etc/environment
where you can insert the following lines as root:
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
The top answer (very elaborate) also contains a script to enable/disable on demand. (But if you need that, Firefox has an options page for choosing the proxy and you might want to consider using it).
add a comment |
How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? points to the file /etc/environment
where you can insert the following lines as root:
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
The top answer (very elaborate) also contains a script to enable/disable on demand. (But if you need that, Firefox has an options page for choosing the proxy and you might want to consider using it).
How do I set systemwide proxy servers in Xubuntu, Lubuntu or Ubuntu Studio? points to the file /etc/environment
where you can insert the following lines as root:
http_proxy=http://myproxy.server.com:8080/
https_proxy=http://myproxy.server.com:8080/
ftp_proxy=http://myproxy.server.com:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
The top answer (very elaborate) also contains a script to enable/disable on demand. (But if you need that, Firefox has an options page for choosing the proxy and you might want to consider using it).
edited Apr 13 '17 at 12:23
Community♦
1
1
answered Apr 8 '16 at 7:30
serv-incserv-inc
1,7211521
1,7211521
add a comment |
add a comment |
When the proxy settings are in the environment proxy variables, Chrome did not work by putting the full proxy settings on the launcher.
--proxy-server="IP proxy Server:port" (ex: --proxy-server="127.0.0.1:8080")
But it worked when I put it to detect the automatic configurations
--proxy-auto-detect
And it worked in Vivaldi.
add a comment |
When the proxy settings are in the environment proxy variables, Chrome did not work by putting the full proxy settings on the launcher.
--proxy-server="IP proxy Server:port" (ex: --proxy-server="127.0.0.1:8080")
But it worked when I put it to detect the automatic configurations
--proxy-auto-detect
And it worked in Vivaldi.
add a comment |
When the proxy settings are in the environment proxy variables, Chrome did not work by putting the full proxy settings on the launcher.
--proxy-server="IP proxy Server:port" (ex: --proxy-server="127.0.0.1:8080")
But it worked when I put it to detect the automatic configurations
--proxy-auto-detect
And it worked in Vivaldi.
When the proxy settings are in the environment proxy variables, Chrome did not work by putting the full proxy settings on the launcher.
--proxy-server="IP proxy Server:port" (ex: --proxy-server="127.0.0.1:8080")
But it worked when I put it to detect the automatic configurations
--proxy-auto-detect
And it worked in Vivaldi.
answered Oct 25 '17 at 14:23
MaxMax
214
214
add a comment |
add a comment |
One option I use is the Proxy SwitchyOmega extension. It allows some IP addresses or domains to be exempted, as you ask for.
It has a nice GUI instead of needing to deal with command line arguments. It also supports Chrome Sync, so you can get up and running with your proxy settings on a new computer quickly.
You can also set it up so that using the proxy can be switched on or off with a single click.
add a comment |
One option I use is the Proxy SwitchyOmega extension. It allows some IP addresses or domains to be exempted, as you ask for.
It has a nice GUI instead of needing to deal with command line arguments. It also supports Chrome Sync, so you can get up and running with your proxy settings on a new computer quickly.
You can also set it up so that using the proxy can be switched on or off with a single click.
add a comment |
One option I use is the Proxy SwitchyOmega extension. It allows some IP addresses or domains to be exempted, as you ask for.
It has a nice GUI instead of needing to deal with command line arguments. It also supports Chrome Sync, so you can get up and running with your proxy settings on a new computer quickly.
You can also set it up so that using the proxy can be switched on or off with a single click.
One option I use is the Proxy SwitchyOmega extension. It allows some IP addresses or domains to be exempted, as you ask for.
It has a nice GUI instead of needing to deal with command line arguments. It also supports Chrome Sync, so you can get up and running with your proxy settings on a new computer quickly.
You can also set it up so that using the proxy can be switched on or off with a single click.
answered Apr 25 '17 at 22:16
Chai T. RexChai T. Rex
4,22711637
4,22711637
add a comment |
add a comment |
/usr/bin/google-chrome-stable %U --proxy-server="socks5://127.0.0.1:9050" --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE 127.0.0.1"
See here: https://superuser.com/questions/321804/manually-configuring-proxy-settings-of-google-chrome-on-ubuntu
add a comment |
/usr/bin/google-chrome-stable %U --proxy-server="socks5://127.0.0.1:9050" --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE 127.0.0.1"
See here: https://superuser.com/questions/321804/manually-configuring-proxy-settings-of-google-chrome-on-ubuntu
add a comment |
/usr/bin/google-chrome-stable %U --proxy-server="socks5://127.0.0.1:9050" --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE 127.0.0.1"
See here: https://superuser.com/questions/321804/manually-configuring-proxy-settings-of-google-chrome-on-ubuntu
/usr/bin/google-chrome-stable %U --proxy-server="socks5://127.0.0.1:9050" --host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE 127.0.0.1"
See here: https://superuser.com/questions/321804/manually-configuring-proxy-settings-of-google-chrome-on-ubuntu
edited Apr 7 at 8:21
karel
61.5k13133157
61.5k13133157
answered Apr 7 at 7:30
Kevin ChouKevin Chou
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f513840%2fgoogle-chrome-proxy-settings%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@KasiyA I don't want to use Chrome without proxy. I want to use proxy for most domains, except for a few, which are local to my network.
– becko
Aug 20 '14 at 15:11