function(details){
if(details.statusLine.indexOf('502 Bad gateway') > -1) {
chrome.proxy.settings.set({
value: {mode: 'system'},
scope: 'regular'
});
setTimeout(function(){
chrome.proxy.settings.set({
value: {mode: 'fixed_servers', ...},
scope: 'regular'
});
}, 10000);
}
}