Spaces:
Running
Running
Commit
·
24caf9c
1
Parent(s):
1d35a2a
Added favicon link to index.html, improved share button layout for YouTube, and centralized rating display. Updated video URLs in tools.json to remove unnecessary query parameters and standardized tool names for clarity.
Browse files- index.html +32 -15
- tools.json +37 -38
index.html
CHANGED
@@ -11,6 +11,7 @@ sagi test
|
|
11 |
<!DOCTYPE html>
|
12 |
<html dir="rtl" lang="he">
|
13 |
<head>
|
|
|
14 |
<meta charset="UTF-8" />
|
15 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
16 |
<meta property="og:title" content="הכירו את ארגז הכלים של שגיא בר און">
|
@@ -67,6 +68,9 @@ sagi test
|
|
67 |
.mobile-menu.open {
|
68 |
max-height: 500px;
|
69 |
}
|
|
|
|
|
|
|
70 |
|
71 |
/* Admin badge */
|
72 |
.admin-badge {
|
@@ -1270,20 +1274,10 @@ sagi test
|
|
1270 |
tool.description
|
1271 |
}</p>
|
1272 |
|
1273 |
-
<!-- דירוג
|
1274 |
-
<div class="flex justify-
|
1275 |
-
|
1276 |
-
|
1277 |
-
${
|
1278 |
-
tool.video
|
1279 |
-
? `
|
1280 |
-
<button title="צפה בהדרכה" onclick="openVideoModal('${tool.video}')" class="text-red-500 hover:text-red-600 transition text-xl">
|
1281 |
-
<i class="fab fa-youtube"></i>
|
1282 |
-
</button>`
|
1283 |
-
: ''
|
1284 |
-
}
|
1285 |
-
</div>
|
1286 |
-
</div>
|
1287 |
|
1288 |
<!-- כפתור גישה לכלי -->
|
1289 |
<a href="${
|
@@ -1941,6 +1935,26 @@ sagi test
|
|
1941 |
|
1942 |
return `
|
1943 |
<div class="share-buttons mt-4">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1944 |
<button class="share-btn fb" data-platform="facebook" data-url="${tool.url}" data-title="${tool.name}" aria-label="שיתוף בפייסבוק" title="לחצו כדי לשתף את הכלי">
|
1945 |
<i class="fab fa-facebook-f"></i>
|
1946 |
</button>
|
@@ -2074,7 +2088,10 @@ sagi test
|
|
2074 |
} catch { alert('לא הצלחנו להעתיק – נסה ידנית'); }
|
2075 |
return;
|
2076 |
}
|
2077 |
-
|
|
|
|
|
|
|
2078 |
/* ---------- קידוד וכתובת שיתוף ---------- */
|
2079 |
const encodedMsg = encodeURIComponent(shareMsg);
|
2080 |
const encodedUrl = encodeURIComponent(toolUrl); // ל‑Preview
|
|
|
11 |
<!DOCTYPE html>
|
12 |
<html dir="rtl" lang="he">
|
13 |
<head>
|
14 |
+
<link rel="icon" href="/favicon-32x32.png" type="image/x-icon" sizes="32x32"/>
|
15 |
<meta charset="UTF-8" />
|
16 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
17 |
<meta property="og:title" content="הכירו את ארגז הכלים של שגיא בר און">
|
|
|
68 |
.mobile-menu.open {
|
69 |
max-height: 500px;
|
70 |
}
|
71 |
+
.share-btn.yt { color:#FF0000; } /* YouTube */
|
72 |
+
/* (אפשרי) ריווח עדין בין כוכבים */
|
73 |
+
.rating-stars { gap:4px; } /* class חדשה אם תרצה */
|
74 |
|
75 |
/* Admin badge */
|
76 |
.admin-badge {
|
|
|
1274 |
tool.description
|
1275 |
}</p>
|
1276 |
|
1277 |
+
<!-- דירוג ממורכז -->
|
1278 |
+
<div class="flex justify-center items-center gap-1 mb-4">
|
1279 |
+
${renderRatingStars(tool.rating)}
|
1280 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1281 |
|
1282 |
<!-- כפתור גישה לכלי -->
|
1283 |
<a href="${
|
|
|
1935 |
|
1936 |
return `
|
1937 |
<div class="share-buttons mt-4">
|
1938 |
+
|
1939 |
+
<!-- דירוג + יוטיוב -->
|
1940 |
+
<div class="flex justify-center items-center mb-4">
|
1941 |
+
<div class="flex items-center gap-3">
|
1942 |
+
|
1943 |
+
${
|
1944 |
+
tool.video
|
1945 |
+
? `
|
1946 |
+
<button class="share-btn yt"
|
1947 |
+
data-platform="youtube"
|
1948 |
+
data-video="${tool.video}"
|
1949 |
+
aria-label="צפייה בהדרכה"
|
1950 |
+
title="צפייה בהדרכה">
|
1951 |
+
<i class="fab fa-youtube"></i>
|
1952 |
+
</button>`
|
1953 |
+
: ''
|
1954 |
+
}
|
1955 |
+
</div>
|
1956 |
+
</div>
|
1957 |
+
|
1958 |
<button class="share-btn fb" data-platform="facebook" data-url="${tool.url}" data-title="${tool.name}" aria-label="שיתוף בפייסבוק" title="לחצו כדי לשתף את הכלי">
|
1959 |
<i class="fab fa-facebook-f"></i>
|
1960 |
</button>
|
|
|
2088 |
} catch { alert('לא הצלחנו להעתיק – נסה ידנית'); }
|
2089 |
return;
|
2090 |
}
|
2091 |
+
if (platform === 'youtube') {
|
2092 |
+
openVideoModal(btn.dataset.video); // כבר קיים בקובץ
|
2093 |
+
return;
|
2094 |
+
}
|
2095 |
/* ---------- קידוד וכתובת שיתוף ---------- */
|
2096 |
const encodedMsg = encodeURIComponent(shareMsg);
|
2097 |
const encodedUrl = encodeURIComponent(toolUrl); // ל‑Preview
|
tools.json
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
[
|
2 |
{
|
3 |
"name": "Copilot בוואטסאפ",
|
4 |
"description": "הוסיפו מספר וואטסאפ ייעודי - שומרים את המספר בטלפון ומתחילים לשוחח איתם ממש כמו עם-חבר. בלי התקנות. בלי הרשמות. פשוט שולחים הודעה - וה-AI עונה.",
|
@@ -26,8 +26,6 @@
|
|
26 |
"free": true,
|
27 |
"dateAdded": "2025-07-05T08:15:00Z"
|
28 |
},
|
29 |
-
|
30 |
-
|
31 |
{
|
32 |
"name": "אליעזר - בוט תמלול הודעות קוליות בוואטסאפ",
|
33 |
"description": "בוט WhatsApp לתמלול הודעות קוליות לעברית במהירות ובחינם. שלחו הודעה קולית ל־'אליעזר' ותקבלו תמלול מדויק תוך שניות. הבוט מבוסס על טכנולוגיית Whisper-Turbo.",
|
@@ -117,7 +115,7 @@
|
|
117 |
"logo": "https://podcast.adobe.com/favicon.ico",
|
118 |
"category": "audio",
|
119 |
"icon": "fas fa-volume-up",
|
120 |
-
"video": "https://www.youtube.com/embed/pfebhGgaNBA
|
121 |
"rating": 5,
|
122 |
"isFeatured": false,
|
123 |
"isNew": false,
|
@@ -130,7 +128,7 @@
|
|
130 |
"logo": "https://www.svgrepo.com/show/358133/right-to-left-text-direction.svg",
|
131 |
"category": "utility",
|
132 |
"icon": "fas fa-exchange-alt",
|
133 |
-
"video": "https://www.youtube.com/embed/WIrU_3HqaCM
|
134 |
"isNew": false,
|
135 |
"isFeatured": false,
|
136 |
"rating": 5,
|
@@ -195,7 +193,7 @@
|
|
195 |
"category": "image",
|
196 |
"url": "https://app.artflow.ai/auth/register?via=user_tnfw_ibtzq",
|
197 |
"logo": "https://ph-files.imgix.net/76af613d-282a-4404-bb7d-fc3955ff8930.png?auto=format",
|
198 |
-
"video": "https://www.youtube.com/embed/_xIJoXH-Sm4
|
199 |
"icon": "fas fa-pencil-alt",
|
200 |
"rating": 4,
|
201 |
"isNew": false,
|
@@ -294,13 +292,13 @@
|
|
294 |
"free": true
|
295 |
},
|
296 |
{
|
297 |
-
"name": "Captions.ai
|
298 |
"description": "הוסיפו כתוביות בעברית או בכל שפה אחרת לסרטונים שלכם, והפכו אותם לנגישים, מקצועיים וקלים להבנה עבור כל קהל יעד.",
|
299 |
"url": "https://www.captions.ai/",
|
300 |
"logo": "https://cdn.prod.website-files.com/60d0c29c2e1261708dd228ea/6601cc5802f354627dfc87a7_Webclip-96x96.png",
|
301 |
"category": "video",
|
302 |
"icon": "fas fa-closed-captioning",
|
303 |
-
"video": "https://www.youtube.com/embed/mo0J7Npo7MM
|
304 |
"isNew": false,
|
305 |
"isFeatured": false,
|
306 |
"rating": 4.5,
|
@@ -312,7 +310,7 @@
|
|
312 |
"category": "productivity",
|
313 |
"url": "https://chat.openai.com/",
|
314 |
"logo": "https://cdn.freelogovectors.net/svg18/chatgpt-logo-icon-freelogovectors.net.svg",
|
315 |
-
"video": "https://www.youtube.com/embed/Jml_LSMZLKY
|
316 |
"icon": "fas fa-brain",
|
317 |
"rating": 5,
|
318 |
"isNew": false,
|
@@ -575,13 +573,13 @@
|
|
575 |
"free": true
|
576 |
},
|
577 |
{
|
578 |
-
"name": "ElevenLabs
|
579 |
"description": "פלטפורמה מובילה להמרת טקסט לדיבור (TTS) ושכפול קול. מאפשרת ליצור דיבור אנושי טבעי במגוון קולות ושפות, כולל תמיכה בהעלאת דגימות קול לשכפול קול.",
|
580 |
"url": "https://elevenlabs.io/",
|
581 |
"logo": "https://11labs-nonprd-15f22c1d.s3.eu-west-3.amazonaws.com/a2ea339b-8b5e-41bb-b706-24eda8a4c9e3/elevenlabs-symbol.png",
|
582 |
"category": "audio",
|
583 |
"icon": "fas fa-microphone-alt",
|
584 |
-
"video": "https://www.youtube.com/embed/8hrIGmKYV4c
|
585 |
"isNew": false,
|
586 |
"free": false,
|
587 |
"isFeatured": false,
|
@@ -617,7 +615,7 @@
|
|
617 |
"category": "image",
|
618 |
"url": "https://huggingface.co/spaces/multimodalart/face-to-all",
|
619 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
620 |
-
"video": "https://www.youtube.com/embed/4HyZAlgGe08
|
621 |
"icon": "fas fa-smile ",
|
622 |
"rating": 5,
|
623 |
"isNew": false,
|
@@ -870,7 +868,7 @@
|
|
870 |
"category": "messaging",
|
871 |
"url": "https://green-api.com/",
|
872 |
"logo": "https://green-api.com/favicon.ico",
|
873 |
-
"video": "https://www.youtube.com/embed/s1brnyXRlG4
|
874 |
"icon": "fab fa-whatsapp",
|
875 |
"rating": 3,
|
876 |
"isNew": false,
|
@@ -917,7 +915,7 @@
|
|
917 |
"description": "כלי ליצירת דמויות מדברות מטקסט (כולל ליפסינק) עם שליטה קולית ושפתית - בדגש על שימוש חופשי.",
|
918 |
"category": "video",
|
919 |
"url": "https://www.hedra.com/",
|
920 |
-
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpTfbFaKEsInHfE3bdtHBFOGgNueOfi4IbXw&s",
|
921 |
"icon": "fas fa-user-alt",
|
922 |
"rating": 4,
|
923 |
"isNew": false,
|
@@ -929,6 +927,7 @@
|
|
929 |
"category": "video",
|
930 |
"url": "https://app.heygen.com/",
|
931 |
"logo": "https://app.heygen.com/favicon.ico",
|
|
|
932 |
"icon": "fas fa-video",
|
933 |
"rating": 5,
|
934 |
"isNew": false,
|
@@ -1176,11 +1175,11 @@
|
|
1176 |
"video": ""
|
1177 |
},
|
1178 |
{
|
1179 |
-
"name": "LensGo
|
1180 |
"description": "המרו כל סרטון לאנימציה מדהימה בקלות עם LensGo! צפו במדריך המלא, גלו את כל השלבים ליצירת וידאו מונפש, והפכו את הסרטונים שלכם ליצירות אמנות חיות.",
|
1181 |
"url": "https://lensgo.ai/",
|
1182 |
"logo": "https://appscribed.com/wp-content/uploads/2024/09/lensgo-ai-logo-300x233.png",
|
1183 |
-
"video": "https://www.youtube.com/embed/wtOGF-Y729Q
|
1184 |
"icon": "fas fa-magic",
|
1185 |
"rating": 4,
|
1186 |
"isNew": false,
|
@@ -1217,7 +1216,7 @@
|
|
1217 |
"category": "animation",
|
1218 |
"url": "https://huggingface.co/spaces/KwaiVGI/LivePortrait",
|
1219 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
1220 |
-
"video": "https://www.youtube.com/embed/n2pyFU_iSNE
|
1221 |
"icon": "fas fa-smile-beam",
|
1222 |
"rating": 5,
|
1223 |
"isNew": false,
|
@@ -1338,13 +1337,13 @@
|
|
1338 |
"dateAdded": "2025-04-15T00:00:00Z"
|
1339 |
},
|
1340 |
{
|
1341 |
-
"name": "Miocreate
|
1342 |
"description": "החליפו פנים בתמונות בקלות ובמהירות באמצעות כלי חינמי וידידותי. פשוט מעלים תמונה, בוחרים את הפנים הרצויות - והתוצאה מוכנה לשיתוף.",
|
1343 |
"url": "https://www.miocreate.com/face-swap.html",
|
1344 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpqVLb_otnj71EGK2lTISxwjVlh6QuXIfxE3nE4VEv8JvqpIL88Pf8LE26fv1eq-uwrCg&usqp=CAU",
|
1345 |
"category": "image",
|
1346 |
"icon": "fas fa-user-edit",
|
1347 |
-
"video": "https://www.youtube.com/embed/jVdK878I_g8
|
1348 |
"isNew": false,
|
1349 |
"isFeatured": false,
|
1350 |
"rating": 4
|
@@ -1389,7 +1388,7 @@
|
|
1389 |
"category": "video",
|
1390 |
"url": "https://mylens.ai/",
|
1391 |
"logo": "https://media.licdn.com/dms/image/v2/D560BAQF6pj0wc8SqXQ/company-logo_200_200/company-logo_200_200/0/1716147268477/mylens_ai_logo?e=2147483647&v=beta&t=AauHZjpdYB4ci3KaTgJ5BuKYrhVwNsQb-o5PQ_Bie64",
|
1392 |
-
"video": "https://www.youtube.com/embed/tNtbOZYMgcs
|
1393 |
"icon": "fas fa-video",
|
1394 |
"rating": 3,
|
1395 |
"isNew": false,
|
@@ -1635,13 +1634,13 @@
|
|
1635 |
"dateAdded": "2025-04-14T00:00:00Z"
|
1636 |
},
|
1637 |
{
|
1638 |
-
"name": "PromeAI
|
1639 |
"description": "הפכו שרטוטים או סקיצות לתמונות ריאליסטיות מרהיבות בלחיצת כפתור. הכלי מאפשר המרה מהירה של ציורים פשוטים ליצירות גרפיות מדויקות ומעוצבות.",
|
1640 |
"url": "https://www.promeai.pro",
|
1641 |
"logo": "https://cdn-1.webcatalog.io/catalog/promeai-pro/promeai-pro-icon.png?v=1725958915171",
|
1642 |
"category": "image",
|
1643 |
"icon": "fas fa-drafting-compass",
|
1644 |
-
"video": "https://www.youtube.com/embed/ti8R4YaDm8Y
|
1645 |
"isNew": false,
|
1646 |
"isFeatured": false,
|
1647 |
"rating": 4
|
@@ -1659,13 +1658,13 @@
|
|
1659 |
"free": true
|
1660 |
},
|
1661 |
{
|
1662 |
-
"name": "Ready Player Me
|
1663 |
"description": "צרו אווטאר תלת־ממדי מותאם אישית תוך דקות - מושלם למשחקים, מציאות מדומה, ועולמות דיגיטליים. פשוט, מהיר ומרשים.",
|
1664 |
"url": "https://readyplayer.me/",
|
1665 |
"logo": "https://cdn.prod.website-files.com/647a5cfe9ae504d687e5d999/66759e4c5f3ace375e35920c_6525501878cb06ac26a1a7a6_integration-rpm-200x200%20(1).png",
|
1666 |
"category": "design",
|
1667 |
"icon": "fas fa-user-astronaut",
|
1668 |
-
"video": "https://www.youtube.com/embed/dj8hEnrCbn8
|
1669 |
"isNew": false,
|
1670 |
"isFeatured": false,
|
1671 |
"rating": 4.2,
|
@@ -1689,7 +1688,7 @@
|
|
1689 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRF6DELtcYCOqZFjmUAC_S-ZuDjgmJ4Tv25_Q&s",
|
1690 |
"category": "chatbot",
|
1691 |
"icon": "fas fa-comments",
|
1692 |
-
"video": "https://www.youtube.com/embed/ym50sfS1HCE
|
1693 |
"isFeatured": false,
|
1694 |
"rating": 5,
|
1695 |
"isNew": false,
|
@@ -1841,13 +1840,13 @@
|
|
1841 |
"isFeatured": false
|
1842 |
},
|
1843 |
{
|
1844 |
-
"name": "Suno
|
1845 |
"description": "הפלטפורמה המובילה ליצירת שירים מקוריים בשניות - כולל תמיכה מדהימה בעברית! הזינו טקסט, בחרו סגנון, ו-Suno תפיק לכם שיר מקצועי, קליט ומוכן לפרסום.",
|
1846 |
"url": "https://suno.com/invite/@sagi",
|
1847 |
"logo": "https://cdn-1.webcatalog.io/catalog/suno-ai/suno-ai-icon-filled-256.png?v=1742778115135",
|
1848 |
"category": "audio",
|
1849 |
"icon": "fas fa-music",
|
1850 |
-
"video": "https://www.youtube.com/embed/ciAxfRJ0w9c
|
1851 |
"isNew": false,
|
1852 |
"free": false,
|
1853 |
"dateAdded": "2025-04-15T00:00:00Z",
|
@@ -1907,7 +1906,7 @@
|
|
1907 |
"category": "audio",
|
1908 |
"url": "https://ttsmaker.com/",
|
1909 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJqXpxeBUAG3WL8vvuYg7Ta6Lzeoy6cosPUg&s",
|
1910 |
-
"video": "https://www.youtube.com/embed/MaLyekHf25k
|
1911 |
"icon": "fas fa-volume-up",
|
1912 |
"rating": 4,
|
1913 |
"isNew": false,
|
@@ -1926,13 +1925,13 @@
|
|
1926 |
"isFeatured": false
|
1927 |
},
|
1928 |
{
|
1929 |
-
"name": "Vibe
|
1930 |
"description": "תוכנה חינמית לתמלול קבצי אודיו ווידאו במחשב האישי, ללא הגבלת זמן. תומכת בעברית ובשפות נוספות, עם שמירה מלאה על פרטיות - הכל מתבצע מקומית.",
|
1931 |
"url": "https://thewh1teagle.github.io/vibe/",
|
1932 |
"logo": "https://thewh1teagle.github.io/vibe/favicon.ico",
|
1933 |
"category": "transcription",
|
1934 |
"icon": "fas fa-microphone-alt",
|
1935 |
-
"video": "https://www.youtube.com/embed/-gZX0-sY2gM
|
1936 |
"isNew": false,
|
1937 |
"free": true,
|
1938 |
"isFeatured": false,
|
@@ -1998,13 +1997,13 @@
|
|
1998 |
"isFeatured": false
|
1999 |
},
|
2000 |
{
|
2001 |
-
"name": "
|
2002 |
"description": "כלי אונליין לשינוי קול וליצירת מודלים קוליים מותאמים אישית. מאפשר להחליף קול מדיבור לדיבור ללא צורך במחשב חזק.",
|
2003 |
"url": "https://weights.gg/",
|
2004 |
"logo": "https://play-lh.googleusercontent.com/H8vgLES2SPOi_KfC5UBf7nU8PqYf8Qyj6sbjtE-HghvejGdc_WDpgBAKNNW2jdpqDk85",
|
2005 |
"category": "voice",
|
2006 |
"icon": "fas fa-volume-up",
|
2007 |
-
"video": "https://www.youtube.com/embed/6KLwDX1f_rQ
|
2008 |
"isNew": false,
|
2009 |
"isFeatured": false,
|
2010 |
"rating": 4,
|
@@ -2121,7 +2120,7 @@
|
|
2121 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2122 |
"category": "ocr",
|
2123 |
"icon": "fas fa-file-alt",
|
2124 |
-
"video": "https://www.youtube.com/embed/vdaXGeOyvbE
|
2125 |
"isNew": false,
|
2126 |
"isFeatured": true,
|
2127 |
"rating": 5,
|
@@ -2134,7 +2133,7 @@
|
|
2134 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2135 |
"category": "image",
|
2136 |
"icon": "fas fa-image",
|
2137 |
-
"video": "https://www.youtube.com/embed/vXvVxbjTBVw
|
2138 |
"isNew": false,
|
2139 |
"isFeatured": true,
|
2140 |
"rating": 5,
|
@@ -2175,7 +2174,7 @@
|
|
2175 |
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
2176 |
"category": "image",
|
2177 |
"icon": "fas fa-expand-arrows-alt",
|
2178 |
-
"video": "
|
2179 |
"isFeatured": false,
|
2180 |
"rating": 4,
|
2181 |
"isNew": false,
|
@@ -2198,13 +2197,13 @@
|
|
2198 |
},
|
2199 |
|
2200 |
{
|
2201 |
-
"name": "
|
2202 |
"description": "כלי מקוון חינמי לשדרוג איכות הווידאו עד 4K באמצעות טכנולוגיית AI. מאפשר חידוד, הסרת טשטוש והוספת פרטים לווידאו בלחיצה אחת.",
|
2203 |
"url": "https://www.capcut.com/magic-tools/upscale-video",
|
2204 |
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
2205 |
"category": "video",
|
2206 |
"icon": "fas fa-video",
|
2207 |
-
"video": "https://www.youtube.com/embed/Iw__wI52UHU
|
2208 |
"isNew": false,
|
2209 |
"isFeatured": false,
|
2210 |
"rating": 4,
|
@@ -2232,7 +2231,7 @@
|
|
2232 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2233 |
"category": "pdf",
|
2234 |
"icon": "fas fa-file-pdf",
|
2235 |
-
"video": "https://www.youtube.com/embed/xj8COkST--8
|
2236 |
"isNew": false,
|
2237 |
"isFeatured": true,
|
2238 |
"rating": 5,
|
|
|
1 |
+
[
|
2 |
{
|
3 |
"name": "Copilot בוואטסאפ",
|
4 |
"description": "הוסיפו מספר וואטסאפ ייעודי - שומרים את המספר בטלפון ומתחילים לשוחח איתם ממש כמו עם-חבר. בלי התקנות. בלי הרשמות. פשוט שולחים הודעה - וה-AI עונה.",
|
|
|
26 |
"free": true,
|
27 |
"dateAdded": "2025-07-05T08:15:00Z"
|
28 |
},
|
|
|
|
|
29 |
{
|
30 |
"name": "אליעזר - בוט תמלול הודעות קוליות בוואטסאפ",
|
31 |
"description": "בוט WhatsApp לתמלול הודעות קוליות לעברית במהירות ובחינם. שלחו הודעה קולית ל־'אליעזר' ותקבלו תמלול מדויק תוך שניות. הבוט מבוסס על טכנולוגיית Whisper-Turbo.",
|
|
|
115 |
"logo": "https://podcast.adobe.com/favicon.ico",
|
116 |
"category": "audio",
|
117 |
"icon": "fas fa-volume-up",
|
118 |
+
"video": "https://www.youtube.com/embed/pfebhGgaNBA",
|
119 |
"rating": 5,
|
120 |
"isFeatured": false,
|
121 |
"isNew": false,
|
|
|
128 |
"logo": "https://www.svgrepo.com/show/358133/right-to-left-text-direction.svg",
|
129 |
"category": "utility",
|
130 |
"icon": "fas fa-exchange-alt",
|
131 |
+
"video": "https://www.youtube.com/embed/WIrU_3HqaCM",
|
132 |
"isNew": false,
|
133 |
"isFeatured": false,
|
134 |
"rating": 5,
|
|
|
193 |
"category": "image",
|
194 |
"url": "https://app.artflow.ai/auth/register?via=user_tnfw_ibtzq",
|
195 |
"logo": "https://ph-files.imgix.net/76af613d-282a-4404-bb7d-fc3955ff8930.png?auto=format",
|
196 |
+
"video": "https://www.youtube.com/embed/_xIJoXH-Sm4",
|
197 |
"icon": "fas fa-pencil-alt",
|
198 |
"rating": 4,
|
199 |
"isNew": false,
|
|
|
292 |
"free": true
|
293 |
},
|
294 |
{
|
295 |
+
"name": "Captions.ai",
|
296 |
"description": "הוסיפו כתוביות בעברית או בכל שפה אחרת לסרטונים שלכם, והפכו אותם לנגישים, מקצועיים וקלים להבנה עבור כל קהל יעד.",
|
297 |
"url": "https://www.captions.ai/",
|
298 |
"logo": "https://cdn.prod.website-files.com/60d0c29c2e1261708dd228ea/6601cc5802f354627dfc87a7_Webclip-96x96.png",
|
299 |
"category": "video",
|
300 |
"icon": "fas fa-closed-captioning",
|
301 |
+
"video": "https://www.youtube.com/embed/mo0J7Npo7MM",
|
302 |
"isNew": false,
|
303 |
"isFeatured": false,
|
304 |
"rating": 4.5,
|
|
|
310 |
"category": "productivity",
|
311 |
"url": "https://chat.openai.com/",
|
312 |
"logo": "https://cdn.freelogovectors.net/svg18/chatgpt-logo-icon-freelogovectors.net.svg",
|
313 |
+
"video": "https://www.youtube.com/embed/Jml_LSMZLKY",
|
314 |
"icon": "fas fa-brain",
|
315 |
"rating": 5,
|
316 |
"isNew": false,
|
|
|
573 |
"free": true
|
574 |
},
|
575 |
{
|
576 |
+
"name": "ElevenLabs",
|
577 |
"description": "פלטפורמה מובילה להמרת טקסט לדיבור (TTS) ושכפול קול. מאפשרת ליצור דיבור אנושי טבעי במגוון קולות ושפות, כולל תמיכה בהעלאת דגימות קול לשכפול קול.",
|
578 |
"url": "https://elevenlabs.io/",
|
579 |
"logo": "https://11labs-nonprd-15f22c1d.s3.eu-west-3.amazonaws.com/a2ea339b-8b5e-41bb-b706-24eda8a4c9e3/elevenlabs-symbol.png",
|
580 |
"category": "audio",
|
581 |
"icon": "fas fa-microphone-alt",
|
582 |
+
"video": "https://www.youtube.com/embed/8hrIGmKYV4c",
|
583 |
"isNew": false,
|
584 |
"free": false,
|
585 |
"isFeatured": false,
|
|
|
615 |
"category": "image",
|
616 |
"url": "https://huggingface.co/spaces/multimodalart/face-to-all",
|
617 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
618 |
+
"video": "https://www.youtube.com/embed/4HyZAlgGe08",
|
619 |
"icon": "fas fa-smile ",
|
620 |
"rating": 5,
|
621 |
"isNew": false,
|
|
|
868 |
"category": "messaging",
|
869 |
"url": "https://green-api.com/",
|
870 |
"logo": "https://green-api.com/favicon.ico",
|
871 |
+
"video": "https://www.youtube.com/embed/s1brnyXRlG4",
|
872 |
"icon": "fab fa-whatsapp",
|
873 |
"rating": 3,
|
874 |
"isNew": false,
|
|
|
915 |
"description": "כלי ליצירת דמויות מדברות מטקסט (כולל ליפסינק) עם שליטה קולית ושפתית - בדגש על שימוש חופשי.",
|
916 |
"category": "video",
|
917 |
"url": "https://www.hedra.com/",
|
918 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpTfbFaKEsInHfE3bdtHBFOGgNueOfi4IbXw&s",
|
919 |
"icon": "fas fa-user-alt",
|
920 |
"rating": 4,
|
921 |
"isNew": false,
|
|
|
927 |
"category": "video",
|
928 |
"url": "https://app.heygen.com/",
|
929 |
"logo": "https://app.heygen.com/favicon.ico",
|
930 |
+
"video": "https://www.youtube.com/embed/VSUmh1AGxBk",
|
931 |
"icon": "fas fa-video",
|
932 |
"rating": 5,
|
933 |
"isNew": false,
|
|
|
1175 |
"video": ""
|
1176 |
},
|
1177 |
{
|
1178 |
+
"name": "LensGo",
|
1179 |
"description": "המרו כל סרטון לאנימציה מדהימה בקלות עם LensGo! צפו במדריך המלא, גלו את כל השלבים ליצירת וידאו מונפש, והפכו את הסרטונים שלכם ליצירות אמנות חיות.",
|
1180 |
"url": "https://lensgo.ai/",
|
1181 |
"logo": "https://appscribed.com/wp-content/uploads/2024/09/lensgo-ai-logo-300x233.png",
|
1182 |
+
"video": "https://www.youtube.com/embed/wtOGF-Y729Q",
|
1183 |
"icon": "fas fa-magic",
|
1184 |
"rating": 4,
|
1185 |
"isNew": false,
|
|
|
1216 |
"category": "animation",
|
1217 |
"url": "https://huggingface.co/spaces/KwaiVGI/LivePortrait",
|
1218 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
1219 |
+
"video": "https://www.youtube.com/embed/n2pyFU_iSNE",
|
1220 |
"icon": "fas fa-smile-beam",
|
1221 |
"rating": 5,
|
1222 |
"isNew": false,
|
|
|
1337 |
"dateAdded": "2025-04-15T00:00:00Z"
|
1338 |
},
|
1339 |
{
|
1340 |
+
"name": "Miocreate",
|
1341 |
"description": "החליפו פנים בתמונות בקלות ובמהירות באמצעות כלי חינמי וידידותי. פשוט מעלים תמונה, בוחרים את הפנים הרצויות - והתוצאה מוכנה לשיתוף.",
|
1342 |
"url": "https://www.miocreate.com/face-swap.html",
|
1343 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpqVLb_otnj71EGK2lTISxwjVlh6QuXIfxE3nE4VEv8JvqpIL88Pf8LE26fv1eq-uwrCg&usqp=CAU",
|
1344 |
"category": "image",
|
1345 |
"icon": "fas fa-user-edit",
|
1346 |
+
"video": "https://www.youtube.com/embed/jVdK878I_g8",
|
1347 |
"isNew": false,
|
1348 |
"isFeatured": false,
|
1349 |
"rating": 4
|
|
|
1388 |
"category": "video",
|
1389 |
"url": "https://mylens.ai/",
|
1390 |
"logo": "https://media.licdn.com/dms/image/v2/D560BAQF6pj0wc8SqXQ/company-logo_200_200/company-logo_200_200/0/1716147268477/mylens_ai_logo?e=2147483647&v=beta&t=AauHZjpdYB4ci3KaTgJ5BuKYrhVwNsQb-o5PQ_Bie64",
|
1391 |
+
"video": "https://www.youtube.com/embed/tNtbOZYMgcs",
|
1392 |
"icon": "fas fa-video",
|
1393 |
"rating": 3,
|
1394 |
"isNew": false,
|
|
|
1634 |
"dateAdded": "2025-04-14T00:00:00Z"
|
1635 |
},
|
1636 |
{
|
1637 |
+
"name": "PromeAI",
|
1638 |
"description": "הפכו שרטוטים או סקיצות לתמונות ריאליסטיות מרהיבות בלחיצת כפתור. הכלי מאפשר המרה מהירה של ציורים פשוטים ליצירות גרפיות מדויקות ומעוצבות.",
|
1639 |
"url": "https://www.promeai.pro",
|
1640 |
"logo": "https://cdn-1.webcatalog.io/catalog/promeai-pro/promeai-pro-icon.png?v=1725958915171",
|
1641 |
"category": "image",
|
1642 |
"icon": "fas fa-drafting-compass",
|
1643 |
+
"video": "https://www.youtube.com/embed/ti8R4YaDm8Y",
|
1644 |
"isNew": false,
|
1645 |
"isFeatured": false,
|
1646 |
"rating": 4
|
|
|
1658 |
"free": true
|
1659 |
},
|
1660 |
{
|
1661 |
+
"name": "Ready Player Me",
|
1662 |
"description": "צרו אווטאר תלת־ממדי מותאם אישית תוך דקות - מושלם למשחקים, מציאות מדומה, ועולמות דיגיטליים. פשוט, מהיר ומרשים.",
|
1663 |
"url": "https://readyplayer.me/",
|
1664 |
"logo": "https://cdn.prod.website-files.com/647a5cfe9ae504d687e5d999/66759e4c5f3ace375e35920c_6525501878cb06ac26a1a7a6_integration-rpm-200x200%20(1).png",
|
1665 |
"category": "design",
|
1666 |
"icon": "fas fa-user-astronaut",
|
1667 |
+
"video": "https://www.youtube.com/embed/dj8hEnrCbn8",
|
1668 |
"isNew": false,
|
1669 |
"isFeatured": false,
|
1670 |
"rating": 4.2,
|
|
|
1688 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRF6DELtcYCOqZFjmUAC_S-ZuDjgmJ4Tv25_Q&s",
|
1689 |
"category": "chatbot",
|
1690 |
"icon": "fas fa-comments",
|
1691 |
+
"video": "https://www.youtube.com/embed/ym50sfS1HCE",
|
1692 |
"isFeatured": false,
|
1693 |
"rating": 5,
|
1694 |
"isNew": false,
|
|
|
1840 |
"isFeatured": false
|
1841 |
},
|
1842 |
{
|
1843 |
+
"name": "Suno",
|
1844 |
"description": "הפלטפורמה המובילה ליצירת שירים מקוריים בשניות - כולל תמיכה מדהימה בעברית! הזינו טקסט, בחרו סגנון, ו-Suno תפיק לכם שיר מקצועי, קליט ומוכן לפרסום.",
|
1845 |
"url": "https://suno.com/invite/@sagi",
|
1846 |
"logo": "https://cdn-1.webcatalog.io/catalog/suno-ai/suno-ai-icon-filled-256.png?v=1742778115135",
|
1847 |
"category": "audio",
|
1848 |
"icon": "fas fa-music",
|
1849 |
+
"video": "https://www.youtube.com/embed/ciAxfRJ0w9c",
|
1850 |
"isNew": false,
|
1851 |
"free": false,
|
1852 |
"dateAdded": "2025-04-15T00:00:00Z",
|
|
|
1906 |
"category": "audio",
|
1907 |
"url": "https://ttsmaker.com/",
|
1908 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJqXpxeBUAG3WL8vvuYg7Ta6Lzeoy6cosPUg&s",
|
1909 |
+
"video": "https://www.youtube.com/embed/MaLyekHf25k",
|
1910 |
"icon": "fas fa-volume-up",
|
1911 |
"rating": 4,
|
1912 |
"isNew": false,
|
|
|
1925 |
"isFeatured": false
|
1926 |
},
|
1927 |
{
|
1928 |
+
"name": "Vibe",
|
1929 |
"description": "תוכנה חינמית לתמלול קבצי אודיו ווידאו במחשב האישי, ללא הגבלת זמן. תומכת בעברית ובשפות נוספות, עם שמירה מלאה על פרטיות - הכל מתבצע מקומית.",
|
1930 |
"url": "https://thewh1teagle.github.io/vibe/",
|
1931 |
"logo": "https://thewh1teagle.github.io/vibe/favicon.ico",
|
1932 |
"category": "transcription",
|
1933 |
"icon": "fas fa-microphone-alt",
|
1934 |
+
"video": "https://www.youtube.com/embed/-gZX0-sY2gM",
|
1935 |
"isNew": false,
|
1936 |
"free": true,
|
1937 |
"isFeatured": false,
|
|
|
1997 |
"isFeatured": false
|
1998 |
},
|
1999 |
{
|
2000 |
+
"name": "Weights.gg",
|
2001 |
"description": "כלי אונליין לשינוי קול וליצירת מודלים קוליים מותאמים אישית. מאפשר להחליף קול מדיבור לדיבור ללא צורך במחשב חזק.",
|
2002 |
"url": "https://weights.gg/",
|
2003 |
"logo": "https://play-lh.googleusercontent.com/H8vgLES2SPOi_KfC5UBf7nU8PqYf8Qyj6sbjtE-HghvejGdc_WDpgBAKNNW2jdpqDk85",
|
2004 |
"category": "voice",
|
2005 |
"icon": "fas fa-volume-up",
|
2006 |
+
"video": "https://www.youtube.com/embed/6KLwDX1f_rQ",
|
2007 |
"isNew": false,
|
2008 |
"isFeatured": false,
|
2009 |
"rating": 4,
|
|
|
2120 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2121 |
"category": "ocr",
|
2122 |
"icon": "fas fa-file-alt",
|
2123 |
+
"video": "https://www.youtube.com/embed/vdaXGeOyvbE",
|
2124 |
"isNew": false,
|
2125 |
"isFeatured": true,
|
2126 |
"rating": 5,
|
|
|
2133 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2134 |
"category": "image",
|
2135 |
"icon": "fas fa-image",
|
2136 |
+
"video": "https://www.youtube.com/embed/vXvVxbjTBVw",
|
2137 |
"isNew": false,
|
2138 |
"isFeatured": true,
|
2139 |
"rating": 5,
|
|
|
2174 |
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
2175 |
"category": "image",
|
2176 |
"icon": "fas fa-expand-arrows-alt",
|
2177 |
+
"video": "",
|
2178 |
"isFeatured": false,
|
2179 |
"rating": 4,
|
2180 |
"isNew": false,
|
|
|
2197 |
},
|
2198 |
|
2199 |
{
|
2200 |
+
"name": "CapCut upscale video",
|
2201 |
"description": "כלי מקוון חינמי לשדרוג איכות הווידאו עד 4K באמצעות טכנולוגיית AI. מאפשר חידוד, הסרת טשטוש והוספת פרטים לווידאו בלחיצה אחת.",
|
2202 |
"url": "https://www.capcut.com/magic-tools/upscale-video",
|
2203 |
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
2204 |
"category": "video",
|
2205 |
"icon": "fas fa-video",
|
2206 |
+
"video": "https://www.youtube.com/embed/Iw__wI52UHU",
|
2207 |
"isNew": false,
|
2208 |
"isFeatured": false,
|
2209 |
"rating": 4,
|
|
|
2231 |
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
2232 |
"category": "pdf",
|
2233 |
"icon": "fas fa-file-pdf",
|
2234 |
+
"video": "https://www.youtube.com/embed/xj8COkST--8",
|
2235 |
"isNew": false,
|
2236 |
"isFeatured": true,
|
2237 |
"rating": 5,
|