יום שני, 3 בנובמבר 2025

gemini-change-code-rtl

העתק את הקוד
javascript:/*Gemini-change code direction*/(function()%7Bif(document.getElementById('toggleCodeDirectionBtn'))return;let b=document.createElement('button');b.id='toggleCodeDirectionBtn';b.innerText='Toggle Code Direction';b.style.position='fixed';b.style.top='25px';b.style.left='10px';b.style.zIndex=9999;b.style.padding='5px 10px';b.style.backgroundColor='#007bff';b.style.color='#fff';b.style.border='none';b.style.borderRadius='4px';b.style.cursor='move';b.style.userSelect='none';b.style.display='flex';b.style.alignItems='center';b.style.gap='5px';b.style.transition='transform 0.2s ease, opacity 0.2s ease';let closeBtn=document.createElement('span');closeBtn.innerText='✖';closeBtn.style.fontSize='10px';closeBtn.style.cursor='pointer';closeBtn.style.fontWeight='bold';closeBtn.style.marginLeft='5px';closeBtn.onclick=function(e){e.stopPropagation();let dirs=[['0px','-50px'],['0px','50px'],['-50px','0px'],['50px','0px']];let r=dirs[Math.floor(Math.random()*dirs.length)];b.style.transform=%60translate(${r[0]},${r[1]}) scale(0)%60;b.style.opacity='0';setTimeout(()=>b.remove(),100);};b.appendChild(closeBtn);document.body.appendChild(b);b.onmousedown=function(e){if(e.target===closeBtn)return;e.preventDefault();let dx=e.clientX-b.offsetLeft,dy=e.clientY-b.offsetTop;document.onmousemove=function(e){b.style.left=e.clientX-dx+'px';b.style.top=e.clientY-dy+'px';};document.onmouseup=function(){document.onmousemove=null;document.onmouseup=null;};};b.onclick=function(e){if(e.target===closeBtn)return;document.querySelectorAll('pre, code').forEach(c=>{if(c.style.direction==='rtl'){c.style.direction='ltr';c.style.textAlign='left';}else{c.style.direction='rtl';c.style.textAlign='right';}});};})();

אין תגובות:

הוסף רשומת תגובה