Open mywebsolutionfr opened 5 months ago
Bcs default version of this app doesnt support another languages than english i fix this issue using UTF-8 you need to change popup.js file download csv function with this
// Download the CSV file function downloadCsv(csv, filename) { var csvFile; var downloadLink;
// UTF-8 BOM (Byte Order Mark) ile birlikte CSV dosyasını oluşturuyoruz
var bom = '\uFEFF'; // UTF-8 BOM karakteri
csvFile = new Blob([bom + csv], { type: 'text/csv; charset=utf-8' });
downloadLink = document.createElement('a');
downloadLink.download = filename;
downloadLink.href = window.URL.createObjectURL(csvFile);
downloadLink.style.display = 'none';
document.body.appendChild(downloadLink);
downloadLink.click();
}
Hi,
I recently downloaded your extension. My problem is that rating, reviews, phone and industry columns are empty.
Any idea why ?
I'm from France, using Brave Browser.
Thanks for your help