فيديوهات
صور
GIFs
كيفية التحميل:
1. انسخ الكود أدناه
2. افتح التغريدة في تاب جديد
3. اضغط F12 لفتح أدوات المطور
4. الصق الكود في تبويب Console واضغط Enter
1. انسخ الكود أدناه
2. افتح التغريدة في تاب جديد
3. اضغط F12 لفتح أدوات المطور
4. الصق الكود في تبويب Console واضغط Enter
// سكريبت تحميل محتوى تغريدة تويتر الفردية
(function(){
// البحث عن الفيديوهات
const videoElements = document.querySelectorAll('video');
if(videoElements.length > 0) {
videoElements.forEach((video, index) => {
if(video.src) {
const a = document.createElement('a');
a.href = video.src;
a.download = `twitter-video-${index + 1}.mp4`;
a.target = '_blank';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
});
console.log(`تم العثور على ${videoElements.length} فيديو`);
}
// البحث عن الصور
const imageElements = document.querySelectorAll('img[src*="pbs.twimg.com/media/"]');
if(imageElements.length > 0) {
imageElements.forEach((img, index) => {
const a = document.createElement('a');
a.href = img.src;
a.download = `twitter-image-${index + 1}.jpg`;
a.target = '_blank';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
});
console.log(`تم العثور على ${imageElements.length} صورة`);
}
if(videoElements.length === 0 && imageElements.length === 0) {
console.log('لم يتم العثور على فيديوهات أو صور في هذه التغريدة');
}
})();
كيفية تحميل محتوى الحساب:
1. افتح صفحة المستخدم على تويتر
2. انسخ الكود أدناه
3. افتح أدوات المطور (F12)
4. الصق في Console واضغط Enter
5. انتظر حتى يقوم السكريبت بجمع جميع الوسائط
1. افتح صفحة المستخدم على تويتر
2. انسخ الكود أدناه
3. افتح أدوات المطور (F12)
4. الصق في Console واضغط Enter
5. انتظر حتى يقوم السكريبت بجمع جميع الوسائط
// سكريبت تحميل جميع الوسائط من حساب تويتر
(async function(){
const delay = ms => new Promise(res => setTimeout(res, ms));
const mediaUrls = new Set();
async function scrollToBottom() {
const scrollHeight = () => document.documentElement.scrollHeight;
let lastHeight = scrollHeight();
let scrollCount = 0;
while(scrollCount < 10) { // تحميل حتى 10 صفحات
window.scrollTo(0, scrollHeight());
await delay(2000);
const newHeight = scrollHeight();
if(newHeight === lastHeight) break;
lastHeight = newHeight;
scrollCount++;
}
}
function collectMediaUrls() {
// جمع الفيديوهات
document.querySelectorAll('video').forEach(video => {
if(video.src && video.src.includes('video.twimg.com')) {
mediaUrls.add(video.src);
}
});
// جمع الصور
document.querySelectorAll('img[src*="pbs.twimg.com/media/"]').forEach(img => {
if(img.src && !img.src.includes('profile_images')) {
mediaUrls.add(img.src);
}
});
}
console.log('بدء جمع الوسائط...');
await scrollToBottom();
collectMediaUrls();
console.log(`تم العثور على ${mediaUrls.size} وسائط`);
// إنشاء قائمة بروابط الوسائط
const urlList = Array.from(mediaUrls).join('\n');
const blob = new Blob([urlList], {type: 'text/plain'});
const a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = 'twitter-media.txt';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
})();
1
سجل الدخول إلى تويتر للوصول إلى جميع أنواع المحتوى
2
فعل النوافذ المنبثقة في متصفحك للتحميل التلقائي
3
للحسابات الكبيرة، كن صبوراً أثناء جمع السكريبت للوسائط
فيديوهات HD
تحميل الفيديوهات بأعلى جودة متاحة
صور متعددة
تحميل جميع الصور من التغريدة
حساب كامل
تحميل جميع الوسائط من الحساب