PDF ملخصات مع اوراق عمل لمادة علوم الارض للصف العاشر الفصل الاول

Mansor_alsawalqa

طاقم الإدارة
إنضم
28 أغسطس 2009
المشاركات
302,574
مستوى التفاعل
30,145
النقاط
11,040
العمر
15
الإقامة
الطفيلة الهاشمية
ملخصات مع اوراق عمل لمادة علوم الارض للصف العاشر الفصل الاول
do.php

او التحميل الملخص كامل من المرفقات


do.php

 

المرفقات

  • ملخصات مع اوراق عمل لمادة علوم الارض للصف العاشر الفصل الاول المنهاج الجديد 2016-2017.zip
    563.9 KB · المشاهدات: 92
التعديل الأخير بواسطة المشرف:

همسآت شرقية

طاقم الادارة
إنضم
1 فبراير 2013
المشاركات
17,282
مستوى التفاعل
361
النقاط
63
الإقامة
المفرق
ما أروعه بوركت
 
إنضم
10 سبتمبر 2013
المشاركات
118
مستوى التفاعل
0
النقاط
16
العمر
41
:e418::e418::e418::e418:
 
إنضم
15 سبتمبر 2013
المشاركات
10
مستوى التفاعل
0
النقاط
0
بارك الله فيكم
 
إنضم
15 سبتمبر 2016
المشاركات
47
مستوى التفاعل
0
النقاط
0
العمر
54
عين الباشا

مشكووووووووووووووووووووووور
 
إنضم
25 سبتمبر 2014
المشاركات
80
مستوى التفاعل
0
النقاط
6
يعطيكم العافية المادة صعبة الحفظ على الطلاب:e40f:
 
إنضم
25 أغسطس 2015
المشاركات
9
مستوى التفاعل
0
النقاط
0
يعطيكم العافية المادة صعبة الحفظ على الطلاب:e40d:
 
إنضم
28 أبريل 2015
المشاركات
60
مستوى التفاعل
0
النقاط
0
يعطيكو العافية
 
إنضم
7 سبتمبر 2015
المشاركات
44
مستوى التفاعل
0
النقاط
6
العمر
50
الله يعطيكو العافية
 
إنضم
3 سبتمبر 2018
المشاركات
2
مستوى التفاعل
0
النقاط
0
شـكــ وبارك الله فيك ـــرا لك ... لك مني أجمل تحية .
 
إنضم
3 سبتمبر 2018
المشاركات
2
مستوى التفاعل
0
النقاط
0
عافاكم الله
 
إنضم
31 أغسطس 2019
المشاركات
1
مستوى التفاعل
0
النقاط
0
شكرا جزيلا
 
إنضم
17 فبراير 2018
المشاركات
7
مستوى التفاعل
0
النقاط
0
العمر
48
جميل

جميل للتجربة
 
const config = { siteUrl: 'https://www.jnob-jo.com', whitelist: [ 'youtube.com', 'youtu.be', 'facebook.com', 'twitter.com', 'iinkor.com', 'forum.iinkor.com', 'instagram.com', 'up.jnob-jo.com', 'drive.google.com', 'docs.google.com', 'apps.moe.gov.jo', 'nccd.gov.jo''instagram.com' ] }; function isWhitelisted(url) { return config.whitelist.some(domain => url.includes(domain)); } function isExternalLink(url) { try { const urlObj = new URL(url); const siteUrlObj = new URL(config.siteUrl); return urlObj.hostname !== siteUrlObj.hostname; } catch (e) { return false; } } function convertExternalLink(url, replaceWithStars = false) { if (!url) return url; // تجاهل الروابط الداخلية والمستثناة if (!isExternalLink(url) || isWhitelisted(url)) { return url; } if (replaceWithStars) { return '****'; } return config.siteUrl; } function processBBCodeLinks() { const textNodes = document.evaluate( "//text()[contains(., '[URL')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /\[URL[^\]]*\](https?:\/\/[^\[]+)\[\/URL\]/g, (match, url) => { const isUrlAlone = text.trim() === match; const newUrl = convertExternalLink(url.trim(), isUrlAlone); return `[URL]${newUrl}[/URL]`; } ); if (text !== node.textContent) { node.textContent = text; } } } function processPlainTextLinks() { const textNodes = document.evaluate( "//text()[contains(., 'http://') or contains(., 'https://')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /(https?:\/\/[^\s\[\]<>"']+)/g, (match) => { // تحقق مما إذا كان الرابط وحده في النص const isUrlAlone = text.trim() === match; return convertExternalLink(match, isUrlAlone); } ); if (text !== node.textContent) { node.textContent = text; } } } function processPageLinks() { const links = document.querySelectorAll('.message-body a, .p-body-pageContent a'); links.forEach(link => { const href = link.getAttribute('href'); if (href) { const isUrlAlone = link.textContent.trim() === href; const newHref = convertExternalLink(href, isUrlAlone); if (newHref !== href) { link.setAttribute('href', newHref); if (isUrlAlone) { link.textContent = '****'; } link.classList.add('external-redirect'); } } }); processBBCodeLinks(); processPlainTextLinks(); } document.addEventListener('DOMContentLoaded', processPageLinks); document.addEventListener('XFContentLoaded', processPageLinks); const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.addedNodes && mutation.addedNodes.length > 0) { processPageLinks(); } }); }); observer.observe(document.body, { childList: true, subtree: true });