File size: 648 Bytes
fde6ce9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "{{ proxy_host }}",
port: parseInt("{{ proxy_port }}")
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "{{ proxy_user }}",
password: "{{ proxy_pass }}"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
|