בירור | איך ניתן לעשות לחצן שיוריד תמונות מאתר
-
@בהתחלה זה נשמע כאילו אתה צריך לעשות איזשהו סוג של "גרידת רשת" (גרידת אינטרנט) שאל chatgpt.
(תבין מה קורה כשהם משנים את התמונה ומה נשאר ומה עוד יש בדף) למשל אם זו התמונה היחידה בגודל מסוים הורד את כל העמוד ומחק את כל שאר התמונות. או אולי הם משנים את הקובץ בשרת אבל הוא תמיד נקרא באותו שם, בעצם אתה צריך להסתכל על המשאבים של דף האינטרנט ולהבין איך להפריד בין התמונה שאתה רוצה לבין השאר. -
@10110000 כתב בבירור | איך ניתן לעשות לחצן שיוריד תמונות מאתר:
@בהתחלה זה נשמע כאילו אתה צריך לעשות איזשהו סוג של "גרידת רשת" (גרידת אינטרנט) שאל chatgpt.
(תבין מה קורה כשהם משנים את התמונה ומה נשאר ומה עוד יש בדף) למשל אם זו התמונה היחידה בגודל מסוים הורד את כל העמוד ומחק את כל שאר התמונות. או אולי הם משנים את הקובץ בשרת אבל הוא תמיד נקרא באותו שם, בעצם אתה צריך להסתכל על המשאבים של דף האינטרנט ולהבין איך להפריד בין התמונה שאתה רוצה לבין השאר.לא אכפת לי שיוריד את כל התמונות בדף הראשי גם כל מיני אייקונים מיותרים אני מיד מוצא את התמונות שאני רוצה בהעברה מהירה . אין צורך בהחלפה וזיהוי וכל זה
פשוט לחצן שיוריד מתי שאלחץ עליו את כל תמונות העמוד -
@בהתחלה תלחץ על 'בדיקה' באתר ההוא, ואז תלחץ על console, ואז בתיבת הטקסט שנפתחה לך תדביק את הקוד הזה:
// Create a function to download images function downloadImages() { // Get all the images on the page var images = document.querySelectorAll('img'); // Loop through each image images.forEach(function(image) { // Create a new anchor element var link = document.createElement('a'); // Set the href attribute to the image source link.href = image.src; // Set the download attribute to force download link.download = ''; // Append the anchor element to the body document.body.appendChild(link); // Click the link to trigger download link.click(); // Remove the anchor element from the body document.body.removeChild(link); }); } // Create a button element var button = document.createElement('button'); // Set the button text button.innerText = 'Download Images'; // Set button styles button.style.position = 'fixed'; button.style.top = '20px'; // Adjust top position as needed button.style.right = '20px'; // Align to the right side button.style.fontSize = '1.5em'; // Decrease the font size a bit button.style.backgroundColor = 'green'; // Set button background color to green button.style.color = 'white'; // Set button text color to white button.style.padding = '8px 16px'; // Adjust padding button.style.borderRadius = '12px'; // Set border radius to make edges rounded // Set an event listener for button click button.addEventListener('click', downloadImages); // Append the button to the body of the page document.body.appendChild(button);
ואז תלחץ על אנטר. זהו, עכשיו יופיע לך הכפתור שרצית
-
-
@רפאל-vnkl כתב בבירור | איך ניתן לעשות לחצן שיוריד תמונות מאתר:
@בהתחלה תלחץ על 'בדיקה' באתר ההוא, ואז תלחץ על console, ואז בתיבת הטקסט שנפתחה לך תדביק את הקוד הזה:
// Create a function to download images function downloadImages() { // Get all the images on the page var images = document.querySelectorAll('img'); // Loop through each image images.forEach(function(image) { // Create a new anchor element var link = document.createElement('a'); // Set the href attribute to the image source link.href = image.src; // Set the download attribute to force download link.download = ''; // Append the anchor element to the body document.body.appendChild(link); // Click the link to trigger download link.click(); // Remove the anchor element from the body document.body.removeChild(link); }); } // Create a button element var button = document.createElement('button'); // Set the button text button.innerText = 'Download Images'; // Set button styles button.style.position = 'fixed'; button.style.top = '20px'; // Adjust top position as needed button.style.right = '20px'; // Align to the right side button.style.fontSize = '1.5em'; // Decrease the font size a bit button.style.backgroundColor = 'green'; // Set button background color to green button.style.color = 'white'; // Set button text color to white button.style.padding = '8px 16px'; // Adjust padding button.style.borderRadius = '12px'; // Set border radius to make edges rounded // Set an event listener for button click button.addEventListener('click', downloadImages); // Append the button to the body of the page document.body.appendChild(button);
ואז תלחץ על אנטר. זהו, עכשיו יופיע לך הכפתור שרצית
עשיתי וזה מה שמופיע
-
@רפאל-vnkl כתב בבירור | איך ניתן לעשות לחצן שיוריד תמונות מאתר:
@בהתחלה אה, זה בגלל שהוא מגן מקודים לא ידועים.
תקליד בתיבת טקסט הזאת allow pastingזה טוב לאותו פעם אבל אני רואה שהלחצן נעלם כל פעם
השאלה אם אפשר לשים לחצן אפילו בשלחן עבודה שיוריד לתיקיה מוגדרת מראש במחשב שלא אצטרך לפתוח את האתר כי אם פתחתי אז כבר שם ראיתי את התמונה ואוכל ללחוץ עליו "שמור" -
@בהתחלה כתב בבירור | איך ניתן לעשות לחצן שיוריד תמונות מאתר:
אתר מסוים שמידי פעם מעלה תמונה חדשה לדף הראשי. איך ניתן לייצור לחצן או קובץ באט או כל צורה אחרת שבלחיצה עליו יוריד את כל התמונות שבעמוד לתוך תיקיה במחשב. יש אפשרות עם IDM אבל גם שם צריכים להכנס ולהגדיר מה להוריד. צריך לחצן קל
עפ"י AI וזה עובד נפלא. הכנס את זה לBAT
לפני כן יש להוריד את הקובץ WGET ולהעתיקו לסיסטם 32wget -r -l 1 -A jpg,jpeg,png,gif mitmachim.top
הוא מייצר כזו תיקיה במיקום של הבאט
אם רוצים להוריד את כל האתר יש למחוק את ה A וכל השאר עד כתובות האתר
-
@ישראל-142
התוסף הזה טוב לאתרים שאי אפשר להוריד מהם תמונות...(למי שלא משתמש באופציה של F12...)