I want to set a pac file by URL and I want the cache to be very short lived. My code is:
chrome.proxy.settings.set({ scope: 'regular', value: { mode: 'pac_script', pacScript: { url: "http://example.com", } } })
In chrome proxy documentation I can't find information about weather the pac file is being fetched once upon installation, on every request or if it has some sort of cache. Is it possible to set a short cache period for the pac file?