-
Notifications
You must be signed in to change notification settings - Fork 23
Add Network Proxy Support #170
Comments
Yes this is needed. I 'll add that feature to version 3.3 |
It would be nice to be able to use a different network proxy for each streaming service. I will make this option a service specific option. It will be located in the streaming service settings (Settings -> Services), see #176. |
Yes. chrome.windows.onCreated.addListener(function() {
var config = {
mode: "fixed_servers",
rules: {
proxyForHttp: {
scheme: "http",
host: "192.168.3.31",
port: 8080
},
bypassList: ["noproxy.com"]
}
};
chrome.proxy.settings.set(
{value: config, scope: 'regular'},
function() {});
}); |
…treaming service changed See #170
I added support for network proxy. You can try it by using the latest continuous build. It will be released officially in version 3.3.0. I tested it successfully with wynk, which I could not access without using an indian network proxy: Please give it a try and report back (whether it's working or not). |
Working perfectly @ColinDuquesnoy . Just add a save button (not necessary but, as user prospective we are used to that :P ) |
Feature Request
Please add proxy support because ..unfortunately some streaming services are restricted to some location.
The text was updated successfully, but these errors were encountered: