@אין-הכי-נמי
יש תוספים לכרום שמייצאים טבלה לאקסל
הנה גם סימנייה שעושה את זה (באדיבות AI כמובן)
javascript:(function(){function e(t){var o=[];var a=t.querySelectorAll("tr");a.forEach(function(t){var e=[];t.querySelectorAll("th, td").forEach(function(t){var o=t.textContent.trim().replace(/"/g,'""');if(o.includes(","))o='"'+o+'"';e.push(o)});o.push(e.join(","))});var n=o.join("\n");var r=new Blob(["\uFEFF"+n],{type:"text/csv;charset=utf-8;"});var c=document.createElement("a");if(navigator.msSaveBlob){navigator.msSaveBlob(r,"table.csv")}else{var d=URL.createObjectURL(r);c.href=d;c.setAttribute("download","table.csv");c.style.visibility="hidden";document.body.appendChild(c);c.click();document.body.removeChild(c)}}var t=document.querySelectorAll(".table-export-btn-generated-csv");if(t.length>0){t.forEach(function(t){t.remove()});return}var o=document.querySelectorAll("table");if(o.length===0){alert("לא נמצאו טבלאות בדף זה.");return}o.forEach(function(t,o){var a=document.createElement("button");a.textContent="ייצא טבלה זו ל-CSV",a.className="table-export-btn-generated-csv",a.style.cssText="display: block; margin: 10px 0; padding: 8px 12px; font-size: 14px; font-weight: bold; color: white; background-color: #0078D4; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.2s;",a.onmouseover=function(){this.style.backgroundColor="#005A9E"},a.onmouseout=function(){this.style.backgroundColor="#0078D4"},a.onclick=function(){e(t);document.querySelectorAll(".table-export-btn-generated-csv").forEach(function(t){t.remove()})},t.parentNode.insertBefore(a,t)})})();
זה מציג ליד כל טבלה כפתור להורדה לאקסל