I built a Chrome extension that is fetching some JSON file from my website
function updateTestReport()
{
fetch(http://somewebsite.com/file.json)
.then(response => response.json())
.then(data => {
//logic
});
}
And it works fine, however, lets say I updated my website (including file.json) but now still "old" version is being fetched, unless I refresh my website using CTRL + F5, is there way to fetch LATEST version of the file?