Answer the question
In order to leave comments, you need to log in
How to load iframe using chrome.proxy?
How to load iframe through proxy in content_script?
hrome.webRequest.onAuthRequired.addListener(function() {
var config = {
mode: "fixed_servers",
rules: {
proxyForHttp: {
scheme: "http",
host: "85.25.35.29",
port:"8888"
},
bypassList: ["foobar.com"]
}
};
chrome.proxy.settings.set(
{value: config, scope: 'regular'},
function() {});
});
Answer the question
In order to leave comments, you need to log in
content_script and background communicate via messages. You need to make the handler in the background and access it in the content_script.
In background like this:
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.type == "myMessage") { //можно обойтись без типов
let v = request.v; //12345
// ...что-то сделать
sendResponse({answer: 'ok'}); //не обязательно
}
}
chrome.runtime.sendMessage({
type: "myMessage", //тип сообщения, если их несколько
v: 12345, //какие-то данные нужно переслать в background
}, function(data) { //callback, если нужно
if (data.answer == 'ok') console.log('всё в порядке');
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question