V
V
vaflya2019-07-16 21:26:50
JavaScript
vaflya, 2019-07-16 21:26:50

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

1 answer(s)
D
dollar, 2019-07-17
@vaflya

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'}); //не обязательно
  }
}

In the content script something like this:
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 question

Ask a Question

731 491 924 answers to any question