Spaces:
Running
Running
Commit ·
4ba6270
1
Parent(s): 3a3a5b3
הוספה סינון של חינם
Browse files- index.html +32 -2
- tools.json +82 -43
index.html
CHANGED
|
@@ -389,6 +389,12 @@ https://bit.ly/a-tools
|
|
| 389 |
>
|
| 390 |
הכל
|
| 391 |
</button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 392 |
<button
|
| 393 |
class="filter-btn px-3 py-1 rounded-full border text-sm transition border-gray-300 text-gray-700 bg-white hover:bg-blue-50"
|
| 394 |
data-category="productivity"
|
|
@@ -1158,6 +1164,16 @@ https://bit.ly/a-tools
|
|
| 1158 |
const speakableText = `${tool.name}. ${tool.description}`;
|
| 1159 |
// `${tool.name}`;
|
| 1160 |
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1161 |
|
| 1162 |
toolCard.innerHTML = `
|
| 1163 |
<div class="flex items-center justify-between mb-4">
|
|
@@ -1178,6 +1194,12 @@ https://bit.ly/a-tools
|
|
| 1178 |
? `<span class="text-xs bg-green-500 text-white px-2 py-1 rounded-full animate-pulse">חדש!</span>`
|
| 1179 |
: ''
|
| 1180 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1181 |
<button title="הקרא תיאור" onclick="event.stopPropagation(); speakText('${tool.description.replace(
|
| 1182 |
/'/g,
|
| 1183 |
"\\'"
|
|
@@ -1185,6 +1207,7 @@ https://bit.ly/a-tools
|
|
| 1185 |
<i class="fas fa-volume-up"></i>
|
| 1186 |
</button>
|
| 1187 |
</div>
|
|
|
|
| 1188 |
<!-- תגית קטגוריה -->
|
| 1189 |
<span class="text-xs px-2 py-1 rounded-full ${getCategoryBadgeColor(
|
| 1190 |
tool.category
|
|
@@ -1374,8 +1397,15 @@ https://bit.ly/a-tools
|
|
| 1374 |
.toLowerCase()
|
| 1375 |
.includes(searchTermLower);
|
| 1376 |
const matchesSearch = nameMatch || descMatch || categoryNameMatch;
|
| 1377 |
-
|
| 1378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1379 |
return matchesCategoryFilter && matchesSearch;
|
| 1380 |
});
|
| 1381 |
}
|
|
|
|
| 389 |
>
|
| 390 |
הכל
|
| 391 |
</button>
|
| 392 |
+
<button
|
| 393 |
+
class="filter-btn px-3 py-1 rounded-full border text-sm transition border-yellow-400 text-yellow-700 bg-yellow-100 hover:bg-yellow-200"
|
| 394 |
+
data-category="free"
|
| 395 |
+
>
|
| 396 |
+
חינם
|
| 397 |
+
</button>
|
| 398 |
<button
|
| 399 |
class="filter-btn px-3 py-1 rounded-full border text-sm transition border-gray-300 text-gray-700 bg-white hover:bg-blue-50"
|
| 400 |
data-category="productivity"
|
|
|
|
| 1164 |
const speakableText = `${tool.name}. ${tool.description}`;
|
| 1165 |
// `${tool.name}`;
|
| 1166 |
//
|
| 1167 |
+
// הוספת מאפיין לסינון כלים חינמיים
|
| 1168 |
+
if (tool.free) {
|
| 1169 |
+
toolCard.setAttribute('data-free', 'true');
|
| 1170 |
+
toolCard.classList.add(
|
| 1171 |
+
'border',
|
| 1172 |
+
'border-yellow-400',
|
| 1173 |
+
'shadow-md'
|
| 1174 |
+
);
|
| 1175 |
+
}
|
| 1176 |
+
toolCard.setAttribute('data-tool', 'true');
|
| 1177 |
|
| 1178 |
toolCard.innerHTML = `
|
| 1179 |
<div class="flex items-center justify-between mb-4">
|
|
|
|
| 1194 |
? `<span class="text-xs bg-green-500 text-white px-2 py-1 rounded-full animate-pulse">חדש!</span>`
|
| 1195 |
: ''
|
| 1196 |
}
|
| 1197 |
+
${
|
| 1198 |
+
tool.free
|
| 1199 |
+
? `<span class="text-xs bg-yellow-400 text-black px-2 py-1 rounded-full">חינם</span>`
|
| 1200 |
+
: ''
|
| 1201 |
+
}
|
| 1202 |
+
|
| 1203 |
<button title="הקרא תיאור" onclick="event.stopPropagation(); speakText('${tool.description.replace(
|
| 1204 |
/'/g,
|
| 1205 |
"\\'"
|
|
|
|
| 1207 |
<i class="fas fa-volume-up"></i>
|
| 1208 |
</button>
|
| 1209 |
</div>
|
| 1210 |
+
|
| 1211 |
<!-- תגית קטגוריה -->
|
| 1212 |
<span class="text-xs px-2 py-1 rounded-full ${getCategoryBadgeColor(
|
| 1213 |
tool.category
|
|
|
|
| 1397 |
.toLowerCase()
|
| 1398 |
.includes(searchTermLower);
|
| 1399 |
const matchesSearch = nameMatch || descMatch || categoryNameMatch;
|
| 1400 |
+
|
| 1401 |
+
let matchesCategoryFilter = true;
|
| 1402 |
+
if (currentCategory === 'free') {
|
| 1403 |
+
matchesCategoryFilter = tool.free === true;
|
| 1404 |
+
} else {
|
| 1405 |
+
matchesCategoryFilter =
|
| 1406 |
+
currentCategory === 'all' || tool.category === currentCategory;
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
return matchesCategoryFilter && matchesSearch;
|
| 1410 |
});
|
| 1411 |
}
|
tools.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
| 10 |
"isFeatured": false,
|
| 11 |
"rating": 4,
|
| 12 |
"isNew": true,
|
|
|
|
| 13 |
"dateAdded": "2025-04-13T13:23:00Z"
|
| 14 |
},
|
| 15 |
{
|
|
@@ -23,6 +24,7 @@
|
|
| 23 |
"isFeatured": false,
|
| 24 |
"rating": 4,
|
| 25 |
"isNew": true,
|
|
|
|
| 26 |
"dateAdded": "2025-04-13T10:30:00Z"
|
| 27 |
},
|
| 28 |
|
|
@@ -47,7 +49,8 @@
|
|
| 47 |
"video": "https://www.youtube.com/embed/pfebhGgaNBA?si=GjBTJFyuVHAjoDnd",
|
| 48 |
"rating": 5,
|
| 49 |
"isFeatured": false,
|
| 50 |
-
"isNew": false
|
|
|
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"name": "היפוך כיוון תצוגה באתר",
|
|
@@ -59,7 +62,8 @@
|
|
| 59 |
"video": "https://www.youtube.com/embed/WIrU_3HqaCM?si=SlbyeM1PcwiCiUZm",
|
| 60 |
"isNew": false,
|
| 61 |
"isFeatured": false,
|
| 62 |
-
"rating": 5
|
|
|
|
| 63 |
},
|
| 64 |
|
| 65 |
{
|
|
@@ -127,7 +131,8 @@
|
|
| 127 |
"icon": "fas fa-link",
|
| 128 |
"rating": 3,
|
| 129 |
"isNew": false,
|
| 130 |
-
"isFeatured": false
|
|
|
|
| 131 |
},
|
| 132 |
{
|
| 133 |
"name": "Bubble",
|
|
@@ -160,7 +165,8 @@
|
|
| 160 |
"icon": "fas fa-cut",
|
| 161 |
"rating": 4,
|
| 162 |
"isNew": false,
|
| 163 |
-
"isFeatured": true
|
|
|
|
| 164 |
},
|
| 165 |
{
|
| 166 |
"name": "Captions.ai - תרגום כתוביות בכל שפה",
|
|
@@ -327,7 +333,8 @@
|
|
| 327 |
"icon": "fas fa-search",
|
| 328 |
"rating": 4.5,
|
| 329 |
"isNew": false,
|
| 330 |
-
"isFeatured": false
|
|
|
|
| 331 |
},
|
| 332 |
{
|
| 333 |
"name": "Domoai AI",
|
|
@@ -342,14 +349,15 @@
|
|
| 342 |
},
|
| 343 |
{
|
| 344 |
"name": "Echo Wave",
|
| 345 |
-
"description": "
|
| 346 |
"category": "video",
|
| 347 |
"url": "https://echowave.io/",
|
| 348 |
"logo": "https://images.g2crowd.com/uploads/product/image/large_detail/large_detail_72b8309e6df73ca07f3eafaa13a5551d/echowave.jpg",
|
| 349 |
"icon": "fas fa-video",
|
| 350 |
"rating": 4,
|
| 351 |
"isNew": false,
|
| 352 |
-
"isFeatured": false
|
|
|
|
| 353 |
},
|
| 354 |
{
|
| 355 |
"name": "ElevenLabs - המרת טקסט לדיבור טבעי",
|
|
@@ -372,7 +380,8 @@
|
|
| 372 |
"icon": "fas fa-pencil-alt",
|
| 373 |
"rating": 4,
|
| 374 |
"isNew": false,
|
| 375 |
-
"isFeatured": false
|
|
|
|
| 376 |
},
|
| 377 |
{
|
| 378 |
"name": "Fake Face",
|
|
@@ -395,7 +404,8 @@
|
|
| 395 |
"icon": "fas fa-smile ",
|
| 396 |
"rating": 5,
|
| 397 |
"isNew": false,
|
| 398 |
-
"isFeatured": false
|
|
|
|
| 399 |
},
|
| 400 |
{
|
| 401 |
"name": "FaceFusion",
|
|
@@ -406,7 +416,8 @@
|
|
| 406 |
"icon": "fas fa-user-friends",
|
| 407 |
"rating": 3,
|
| 408 |
"isNew": false,
|
| 409 |
-
"isFeatured": false
|
|
|
|
| 410 |
},
|
| 411 |
{
|
| 412 |
"name": "Fal",
|
|
@@ -478,7 +489,7 @@
|
|
| 478 |
"name": "Gen Spark",
|
| 479 |
"description": "פלטפורמת AI המאפשרת למשתמשים להלביש ולהנפיש תמונות שהעלו, לצד מגוון רחב של כלים איכותיים נוספים. השימוש מוגבל בטוקנים.",
|
| 480 |
"category": "design",
|
| 481 |
-
"url": "https://www.genspark.ai/",
|
| 482 |
"logo": "https://media.licdn.com/dms/image/v2/D560BAQE-bb2bxfUU3A/company-logo_200_200/company-logo_200_200/0/1718684112316?e=2147483647&v=beta&t=nAPQuZC2xjW6G30auki753slYNEdM-lWOXPJEQDSxnA",
|
| 483 |
"icon": "fas fa-pen-nib",
|
| 484 |
"rating": 4,
|
|
@@ -549,7 +560,8 @@
|
|
| 549 |
"icon": "fas fa-robot",
|
| 550 |
"rating": 5,
|
| 551 |
"isNew": false,
|
| 552 |
-
"isFeatured": false
|
|
|
|
| 553 |
},
|
| 554 |
{
|
| 555 |
"name": "GPTs",
|
|
@@ -661,7 +673,8 @@
|
|
| 661 |
"icon": "fas fa-hands-helping",
|
| 662 |
"rating": 4,
|
| 663 |
"isNew": false,
|
| 664 |
-
"isFeatured": true
|
|
|
|
| 665 |
},
|
| 666 |
{
|
| 667 |
"name": "Hume",
|
|
@@ -694,7 +707,8 @@
|
|
| 694 |
"icon": "fas fa-tshirt",
|
| 695 |
"rating": 4,
|
| 696 |
"isNew": false,
|
| 697 |
-
"isFeatured": false
|
|
|
|
| 698 |
},
|
| 699 |
{
|
| 700 |
"name": "IDM VTON",
|
|
@@ -705,7 +719,8 @@
|
|
| 705 |
"icon": "fas fa-tshirt",
|
| 706 |
"rating": 4,
|
| 707 |
"isNew": false,
|
| 708 |
-
"isFeatured": false
|
|
|
|
| 709 |
},
|
| 710 |
{
|
| 711 |
"name": "immersity",
|
|
@@ -727,7 +742,8 @@
|
|
| 727 |
"icon": "fas fa-user-check",
|
| 728 |
"rating": 4,
|
| 729 |
"isNew": false,
|
| 730 |
-
"isFeatured": false
|
|
|
|
| 731 |
},
|
| 732 |
{
|
| 733 |
"name": "ivrit.ai - תמלול קולי בעברית",
|
|
@@ -739,7 +755,8 @@
|
|
| 739 |
"icon": "fas fa-microphone-alt",
|
| 740 |
"rating": 3,
|
| 741 |
"isNew": false,
|
| 742 |
-
"isFeatured": false
|
|
|
|
| 743 |
},
|
| 744 |
{
|
| 745 |
"name": "Jasper",
|
|
@@ -850,7 +867,8 @@
|
|
| 850 |
"icon": "fas fa-user",
|
| 851 |
"rating": 5,
|
| 852 |
"isNew": false,
|
| 853 |
-
"isFeatured": false
|
|
|
|
| 854 |
},
|
| 855 |
{
|
| 856 |
"name": "LM Studio",
|
|
@@ -872,7 +890,8 @@
|
|
| 872 |
"icon": "fas fa-magic",
|
| 873 |
"rating": 4,
|
| 874 |
"isNew": false,
|
| 875 |
-
"isFeatured": false
|
|
|
|
| 876 |
},
|
| 877 |
{
|
| 878 |
"name": "Luma",
|
|
@@ -894,7 +913,8 @@
|
|
| 894 |
"icon": "fas fa-network-wired",
|
| 895 |
"rating": 5,
|
| 896 |
"isNew": false,
|
| 897 |
-
"isFeatured": true
|
|
|
|
| 898 |
},
|
| 899 |
{
|
| 900 |
"name": "Manus",
|
|
@@ -1007,7 +1027,8 @@
|
|
| 1007 |
"icon": "fas fa-book",
|
| 1008 |
"rating": 5,
|
| 1009 |
"isNew": false,
|
| 1010 |
-
"isFeatured": true
|
|
|
|
| 1011 |
},
|
| 1012 |
{
|
| 1013 |
"name": "NoteGPT",
|
|
@@ -1029,7 +1050,8 @@
|
|
| 1029 |
"icon": "fas fa-list-alt",
|
| 1030 |
"rating": 4,
|
| 1031 |
"isNew": false,
|
| 1032 |
-
"isFeatured": false
|
|
|
|
| 1033 |
},
|
| 1034 |
{
|
| 1035 |
"name": "Officely",
|
|
@@ -1051,7 +1073,8 @@
|
|
| 1051 |
"icon": "fas fa-cube",
|
| 1052 |
"rating": 4,
|
| 1053 |
"isNew": false,
|
| 1054 |
-
"isFeatured": false
|
|
|
|
| 1055 |
},
|
| 1056 |
{
|
| 1057 |
"name": "Openai TTS",
|
|
@@ -1060,9 +1083,10 @@
|
|
| 1060 |
"url": "https://openai-tts-fm.vercel.app/",
|
| 1061 |
"logo": "https://openai-tts-fm.vercel.app/icons/favicon.ico",
|
| 1062 |
"icon": "fas fa-volume-up",
|
| 1063 |
-
"rating":
|
| 1064 |
"isNew": false,
|
| 1065 |
-
"isFeatured": false
|
|
|
|
| 1066 |
},
|
| 1067 |
{
|
| 1068 |
"name": "PartyRock",
|
|
@@ -1071,9 +1095,10 @@
|
|
| 1071 |
"url": "https://partyrock.aws/apps",
|
| 1072 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgvmjtTucdIL0890jJctcX2ca08t6p6Su8jw&s",
|
| 1073 |
"icon": "fas fa-tools",
|
| 1074 |
-
"rating":
|
| 1075 |
"isNew": false,
|
| 1076 |
-
"isFeatured": false
|
|
|
|
| 1077 |
},
|
| 1078 |
{
|
| 1079 |
"name": "Perplexity",
|
|
@@ -1095,7 +1120,8 @@
|
|
| 1095 |
"icon": "fas fa-camera",
|
| 1096 |
"rating": 5,
|
| 1097 |
"isNew": false,
|
| 1098 |
-
"isFeatured": true
|
|
|
|
| 1099 |
},
|
| 1100 |
{
|
| 1101 |
"name": "Pixno",
|
|
@@ -1184,7 +1210,8 @@
|
|
| 1184 |
"icon": "fas fa-qrcode",
|
| 1185 |
"rating": 3,
|
| 1186 |
"isNew": false,
|
| 1187 |
-
"isFeatured": false
|
|
|
|
| 1188 |
},
|
| 1189 |
{
|
| 1190 |
"name": "Ready Player Me - יצירת אווטאר אישי תלת־ממדי",
|
|
@@ -1196,7 +1223,8 @@
|
|
| 1196 |
"video": "https://www.youtube.com/embed/dj8hEnrCbn8?si=89SuKrFW3bt3DVyR",
|
| 1197 |
"isNew": false,
|
| 1198 |
"isFeatured": false,
|
| 1199 |
-
"rating": 4.2
|
|
|
|
| 1200 |
},
|
| 1201 |
{
|
| 1202 |
"name": "Remaker",
|
|
@@ -1307,7 +1335,8 @@
|
|
| 1307 |
"icon": "fas fa-list",
|
| 1308 |
"rating": 4,
|
| 1309 |
"isNew": false,
|
| 1310 |
-
"isFeatured": false
|
|
|
|
| 1311 |
},
|
| 1312 |
{
|
| 1313 |
"name": "TimeOS",
|
|
@@ -1342,7 +1371,8 @@
|
|
| 1342 |
"icon": "fas fa-volume-up",
|
| 1343 |
"rating": 4,
|
| 1344 |
"isNew": false,
|
| 1345 |
-
"isFeatured": false
|
|
|
|
| 1346 |
},
|
| 1347 |
{
|
| 1348 |
"name": "Yepic",
|
|
@@ -1365,7 +1395,8 @@
|
|
| 1365 |
"video": "https://www.youtube.com/embed/-gZX0-sY2gM?si=rVXd1v0lvbr20MC-",
|
| 1366 |
"isNew": false,
|
| 1367 |
"isFeatured": false,
|
| 1368 |
-
"rating": 4
|
|
|
|
| 1369 |
},
|
| 1370 |
{
|
| 1371 |
"name": "Vidnoz",
|
|
@@ -1387,7 +1418,8 @@
|
|
| 1387 |
"icon": "fas fa-running",
|
| 1388 |
"rating": 4.2,
|
| 1389 |
"isNew": false,
|
| 1390 |
-
"isFeatured": true
|
|
|
|
| 1391 |
},
|
| 1392 |
{
|
| 1393 |
"name": "Vmake",
|
|
@@ -1421,7 +1453,8 @@
|
|
| 1421 |
"video": "https://www.youtube.com/embed/6KLwDX1f_rQ?si=QqrgMOIF6_2bHsdi",
|
| 1422 |
"isNew": false,
|
| 1423 |
"isFeatured": false,
|
| 1424 |
-
"rating": 4
|
|
|
|
| 1425 |
},
|
| 1426 |
{
|
| 1427 |
"name": "WhatsApp Chatbot",
|
|
@@ -1432,7 +1465,8 @@
|
|
| 1432 |
"icon": "fab fa-whatsapp",
|
| 1433 |
"rating": 5,
|
| 1434 |
"isNew": false,
|
| 1435 |
-
"isFeatured": true
|
|
|
|
| 1436 |
},
|
| 1437 |
{
|
| 1438 |
"name": "Wix",
|
|
@@ -1467,19 +1501,21 @@
|
|
| 1467 |
"video": "https://www.youtube.com/embed/vdaXGeOyvbE?si=AJz1NPiEnfnklArg",
|
| 1468 |
"isNew": false,
|
| 1469 |
"isFeatured": true,
|
| 1470 |
-
"rating": 5
|
|
|
|
| 1471 |
},
|
| 1472 |
{
|
| 1473 |
"name": "מחולל תמונות",
|
| 1474 |
"description": "באמצעות מחולל תמונות AI, אתם יכולים להזין כל טקסט או רעיון שעולה בראשכם ולקבל תמונה ייחודית שנוצרה במיוחד עבורכם.",
|
| 1475 |
"url": "https://sagi-ai-image-model-comparision.streamlit.app/",
|
| 1476 |
-
"logo": "https://
|
| 1477 |
"category": "image",
|
| 1478 |
"icon": "fas fa-image",
|
| 1479 |
"video": "https://www.youtube.com/embed/vXvVxbjTBVw?si=Ep8aVPMF0NB48_Q8",
|
| 1480 |
"isNew": false,
|
| 1481 |
"isFeatured": true,
|
| 1482 |
-
"rating": 5
|
|
|
|
| 1483 |
},
|
| 1484 |
{
|
| 1485 |
"name": "שדרוג וידאו עם CapCut AI",
|
|
@@ -1491,7 +1527,8 @@
|
|
| 1491 |
"video": "https://www.youtube.com/embed/Iw__wI52UHU?si=5ZDctAYQLS71ma2f",
|
| 1492 |
"isNew": false,
|
| 1493 |
"isFeatured": false,
|
| 1494 |
-
"rating": 4
|
|
|
|
| 1495 |
},
|
| 1496 |
|
| 1497 |
{
|
|
@@ -1504,7 +1541,8 @@
|
|
| 1504 |
"video": "https://www.youtube.com/embed/xj8COkST--8?si=QeYl05rW5dwQiYQT",
|
| 1505 |
"isNew": false,
|
| 1506 |
"isFeatured": true,
|
| 1507 |
-
"rating": 5
|
|
|
|
| 1508 |
},
|
| 1509 |
{
|
| 1510 |
"name": "iLovePDF",
|
|
@@ -1543,7 +1581,7 @@
|
|
| 1543 |
"name": "speechgen",
|
| 1544 |
"description": "המרת טקסט לקול בעברית ובשפות נוספות - כולל מבטאים ורגש בקול.",
|
| 1545 |
"category": "audio",
|
| 1546 |
-
"url": "https://speechgen.io/
|
| 1547 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEHbOvOYGlN3I0Pzfoy3TOmGuicaEGmLfBg&s",
|
| 1548 |
"icon": "fas fa-volume-down",
|
| 1549 |
"rating": 3,
|
|
@@ -1559,6 +1597,7 @@
|
|
| 1559 |
"icon": "fas fa-code",
|
| 1560 |
"rating": 3,
|
| 1561 |
"isNew": false,
|
| 1562 |
-
"isFeatured": false
|
|
|
|
| 1563 |
}
|
| 1564 |
]
|
|
|
|
| 10 |
"isFeatured": false,
|
| 11 |
"rating": 4,
|
| 12 |
"isNew": true,
|
| 13 |
+
"free": true,
|
| 14 |
"dateAdded": "2025-04-13T13:23:00Z"
|
| 15 |
},
|
| 16 |
{
|
|
|
|
| 24 |
"isFeatured": false,
|
| 25 |
"rating": 4,
|
| 26 |
"isNew": true,
|
| 27 |
+
"free": true,
|
| 28 |
"dateAdded": "2025-04-13T10:30:00Z"
|
| 29 |
},
|
| 30 |
|
|
|
|
| 49 |
"video": "https://www.youtube.com/embed/pfebhGgaNBA?si=GjBTJFyuVHAjoDnd",
|
| 50 |
"rating": 5,
|
| 51 |
"isFeatured": false,
|
| 52 |
+
"isNew": false,
|
| 53 |
+
"free": true
|
| 54 |
},
|
| 55 |
{
|
| 56 |
"name": "היפוך כיוון תצוגה באתר",
|
|
|
|
| 62 |
"video": "https://www.youtube.com/embed/WIrU_3HqaCM?si=SlbyeM1PcwiCiUZm",
|
| 63 |
"isNew": false,
|
| 64 |
"isFeatured": false,
|
| 65 |
+
"rating": 5,
|
| 66 |
+
"free": true
|
| 67 |
},
|
| 68 |
|
| 69 |
{
|
|
|
|
| 131 |
"icon": "fas fa-link",
|
| 132 |
"rating": 3,
|
| 133 |
"isNew": false,
|
| 134 |
+
"isFeatured": false,
|
| 135 |
+
"free": true
|
| 136 |
},
|
| 137 |
{
|
| 138 |
"name": "Bubble",
|
|
|
|
| 165 |
"icon": "fas fa-cut",
|
| 166 |
"rating": 4,
|
| 167 |
"isNew": false,
|
| 168 |
+
"isFeatured": true,
|
| 169 |
+
"free": true
|
| 170 |
},
|
| 171 |
{
|
| 172 |
"name": "Captions.ai - תרגום כתוביות בכל שפה",
|
|
|
|
| 333 |
"icon": "fas fa-search",
|
| 334 |
"rating": 4.5,
|
| 335 |
"isNew": false,
|
| 336 |
+
"isFeatured": false,
|
| 337 |
+
"free": true
|
| 338 |
},
|
| 339 |
{
|
| 340 |
"name": "Domoai AI",
|
|
|
|
| 349 |
},
|
| 350 |
{
|
| 351 |
"name": "Echo Wave",
|
| 352 |
+
"description": "מדובר באתר פשוט ליצירת סרטונים יפים ישירות מהדפדפן, בלי להתקין תוכנות. אפשר להוסיף בקלות אפקטים, אנימציות לצלילים, כתוביות ופילטרים - והכל בחינם וללא הגבלה.",
|
| 353 |
"category": "video",
|
| 354 |
"url": "https://echowave.io/",
|
| 355 |
"logo": "https://images.g2crowd.com/uploads/product/image/large_detail/large_detail_72b8309e6df73ca07f3eafaa13a5551d/echowave.jpg",
|
| 356 |
"icon": "fas fa-video",
|
| 357 |
"rating": 4,
|
| 358 |
"isNew": false,
|
| 359 |
+
"isFeatured": false,
|
| 360 |
+
"free": true
|
| 361 |
},
|
| 362 |
{
|
| 363 |
"name": "ElevenLabs - המרת טקסט לדיבור טבעי",
|
|
|
|
| 380 |
"icon": "fas fa-pencil-alt",
|
| 381 |
"rating": 4,
|
| 382 |
"isNew": false,
|
| 383 |
+
"isFeatured": false,
|
| 384 |
+
"free": true
|
| 385 |
},
|
| 386 |
{
|
| 387 |
"name": "Fake Face",
|
|
|
|
| 404 |
"icon": "fas fa-smile ",
|
| 405 |
"rating": 5,
|
| 406 |
"isNew": false,
|
| 407 |
+
"isFeatured": false,
|
| 408 |
+
"free": true
|
| 409 |
},
|
| 410 |
{
|
| 411 |
"name": "FaceFusion",
|
|
|
|
| 416 |
"icon": "fas fa-user-friends",
|
| 417 |
"rating": 3,
|
| 418 |
"isNew": false,
|
| 419 |
+
"isFeatured": false,
|
| 420 |
+
"free": true
|
| 421 |
},
|
| 422 |
{
|
| 423 |
"name": "Fal",
|
|
|
|
| 489 |
"name": "Gen Spark",
|
| 490 |
"description": "פלטפורמת AI המאפשרת למשתמשים להלביש ולהנפיש תמונות שהעלו, לצד מגוון רחב של כלים איכותיים נוספים. השימוש מוגבל בטוקנים.",
|
| 491 |
"category": "design",
|
| 492 |
+
"url": "https://www.genspark.ai/invite?invite_code=ZTNjYmYwNmFMYjE3ZUw0MWI0TDJmOWJMZGVjNzFjZDFlM2Ri",
|
| 493 |
"logo": "https://media.licdn.com/dms/image/v2/D560BAQE-bb2bxfUU3A/company-logo_200_200/company-logo_200_200/0/1718684112316?e=2147483647&v=beta&t=nAPQuZC2xjW6G30auki753slYNEdM-lWOXPJEQDSxnA",
|
| 494 |
"icon": "fas fa-pen-nib",
|
| 495 |
"rating": 4,
|
|
|
|
| 560 |
"icon": "fas fa-robot",
|
| 561 |
"rating": 5,
|
| 562 |
"isNew": false,
|
| 563 |
+
"isFeatured": false,
|
| 564 |
+
"free": true
|
| 565 |
},
|
| 566 |
{
|
| 567 |
"name": "GPTs",
|
|
|
|
| 673 |
"icon": "fas fa-hands-helping",
|
| 674 |
"rating": 4,
|
| 675 |
"isNew": false,
|
| 676 |
+
"isFeatured": true,
|
| 677 |
+
"free": true
|
| 678 |
},
|
| 679 |
{
|
| 680 |
"name": "Hume",
|
|
|
|
| 707 |
"icon": "fas fa-tshirt",
|
| 708 |
"rating": 4,
|
| 709 |
"isNew": false,
|
| 710 |
+
"isFeatured": false,
|
| 711 |
+
"free": true
|
| 712 |
},
|
| 713 |
{
|
| 714 |
"name": "IDM VTON",
|
|
|
|
| 719 |
"icon": "fas fa-tshirt",
|
| 720 |
"rating": 4,
|
| 721 |
"isNew": false,
|
| 722 |
+
"isFeatured": false,
|
| 723 |
+
"free": true
|
| 724 |
},
|
| 725 |
{
|
| 726 |
"name": "immersity",
|
|
|
|
| 742 |
"icon": "fas fa-user-check",
|
| 743 |
"rating": 4,
|
| 744 |
"isNew": false,
|
| 745 |
+
"isFeatured": false,
|
| 746 |
+
"free": true
|
| 747 |
},
|
| 748 |
{
|
| 749 |
"name": "ivrit.ai - תמלול קולי בעברית",
|
|
|
|
| 755 |
"icon": "fas fa-microphone-alt",
|
| 756 |
"rating": 3,
|
| 757 |
"isNew": false,
|
| 758 |
+
"isFeatured": false,
|
| 759 |
+
"free": true
|
| 760 |
},
|
| 761 |
{
|
| 762 |
"name": "Jasper",
|
|
|
|
| 867 |
"icon": "fas fa-user",
|
| 868 |
"rating": 5,
|
| 869 |
"isNew": false,
|
| 870 |
+
"isFeatured": false,
|
| 871 |
+
"free": true
|
| 872 |
},
|
| 873 |
{
|
| 874 |
"name": "LM Studio",
|
|
|
|
| 890 |
"icon": "fas fa-magic",
|
| 891 |
"rating": 4,
|
| 892 |
"isNew": false,
|
| 893 |
+
"isFeatured": false,
|
| 894 |
+
"free": true
|
| 895 |
},
|
| 896 |
{
|
| 897 |
"name": "Luma",
|
|
|
|
| 913 |
"icon": "fas fa-network-wired",
|
| 914 |
"rating": 5,
|
| 915 |
"isNew": false,
|
| 916 |
+
"isFeatured": true,
|
| 917 |
+
"free": true
|
| 918 |
},
|
| 919 |
{
|
| 920 |
"name": "Manus",
|
|
|
|
| 1027 |
"icon": "fas fa-book",
|
| 1028 |
"rating": 5,
|
| 1029 |
"isNew": false,
|
| 1030 |
+
"isFeatured": true,
|
| 1031 |
+
"free": true
|
| 1032 |
},
|
| 1033 |
{
|
| 1034 |
"name": "NoteGPT",
|
|
|
|
| 1050 |
"icon": "fas fa-list-alt",
|
| 1051 |
"rating": 4,
|
| 1052 |
"isNew": false,
|
| 1053 |
+
"isFeatured": false,
|
| 1054 |
+
"free": true
|
| 1055 |
},
|
| 1056 |
{
|
| 1057 |
"name": "Officely",
|
|
|
|
| 1073 |
"icon": "fas fa-cube",
|
| 1074 |
"rating": 4,
|
| 1075 |
"isNew": false,
|
| 1076 |
+
"isFeatured": false,
|
| 1077 |
+
"free": true
|
| 1078 |
},
|
| 1079 |
{
|
| 1080 |
"name": "Openai TTS",
|
|
|
|
| 1083 |
"url": "https://openai-tts-fm.vercel.app/",
|
| 1084 |
"logo": "https://openai-tts-fm.vercel.app/icons/favicon.ico",
|
| 1085 |
"icon": "fas fa-volume-up",
|
| 1086 |
+
"rating": 5,
|
| 1087 |
"isNew": false,
|
| 1088 |
+
"isFeatured": false,
|
| 1089 |
+
"free": true
|
| 1090 |
},
|
| 1091 |
{
|
| 1092 |
"name": "PartyRock",
|
|
|
|
| 1095 |
"url": "https://partyrock.aws/apps",
|
| 1096 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgvmjtTucdIL0890jJctcX2ca08t6p6Su8jw&s",
|
| 1097 |
"icon": "fas fa-tools",
|
| 1098 |
+
"rating": 5,
|
| 1099 |
"isNew": false,
|
| 1100 |
+
"isFeatured": false,
|
| 1101 |
+
"free": true
|
| 1102 |
},
|
| 1103 |
{
|
| 1104 |
"name": "Perplexity",
|
|
|
|
| 1120 |
"icon": "fas fa-camera",
|
| 1121 |
"rating": 5,
|
| 1122 |
"isNew": false,
|
| 1123 |
+
"isFeatured": true,
|
| 1124 |
+
"free": true
|
| 1125 |
},
|
| 1126 |
{
|
| 1127 |
"name": "Pixno",
|
|
|
|
| 1210 |
"icon": "fas fa-qrcode",
|
| 1211 |
"rating": 3,
|
| 1212 |
"isNew": false,
|
| 1213 |
+
"isFeatured": false,
|
| 1214 |
+
"free": true
|
| 1215 |
},
|
| 1216 |
{
|
| 1217 |
"name": "Ready Player Me - יצירת אווטאר אישי תלת־ממדי",
|
|
|
|
| 1223 |
"video": "https://www.youtube.com/embed/dj8hEnrCbn8?si=89SuKrFW3bt3DVyR",
|
| 1224 |
"isNew": false,
|
| 1225 |
"isFeatured": false,
|
| 1226 |
+
"rating": 4.2,
|
| 1227 |
+
"free": true
|
| 1228 |
},
|
| 1229 |
{
|
| 1230 |
"name": "Remaker",
|
|
|
|
| 1335 |
"icon": "fas fa-list",
|
| 1336 |
"rating": 4,
|
| 1337 |
"isNew": false,
|
| 1338 |
+
"isFeatured": false,
|
| 1339 |
+
"free": true
|
| 1340 |
},
|
| 1341 |
{
|
| 1342 |
"name": "TimeOS",
|
|
|
|
| 1371 |
"icon": "fas fa-volume-up",
|
| 1372 |
"rating": 4,
|
| 1373 |
"isNew": false,
|
| 1374 |
+
"isFeatured": false,
|
| 1375 |
+
"free": true
|
| 1376 |
},
|
| 1377 |
{
|
| 1378 |
"name": "Yepic",
|
|
|
|
| 1395 |
"video": "https://www.youtube.com/embed/-gZX0-sY2gM?si=rVXd1v0lvbr20MC-",
|
| 1396 |
"isNew": false,
|
| 1397 |
"isFeatured": false,
|
| 1398 |
+
"rating": 4,
|
| 1399 |
+
"free": true
|
| 1400 |
},
|
| 1401 |
{
|
| 1402 |
"name": "Vidnoz",
|
|
|
|
| 1418 |
"icon": "fas fa-running",
|
| 1419 |
"rating": 4.2,
|
| 1420 |
"isNew": false,
|
| 1421 |
+
"isFeatured": true,
|
| 1422 |
+
"free": true
|
| 1423 |
},
|
| 1424 |
{
|
| 1425 |
"name": "Vmake",
|
|
|
|
| 1453 |
"video": "https://www.youtube.com/embed/6KLwDX1f_rQ?si=QqrgMOIF6_2bHsdi",
|
| 1454 |
"isNew": false,
|
| 1455 |
"isFeatured": false,
|
| 1456 |
+
"rating": 4,
|
| 1457 |
+
"free": true
|
| 1458 |
},
|
| 1459 |
{
|
| 1460 |
"name": "WhatsApp Chatbot",
|
|
|
|
| 1465 |
"icon": "fab fa-whatsapp",
|
| 1466 |
"rating": 5,
|
| 1467 |
"isNew": false,
|
| 1468 |
+
"isFeatured": true,
|
| 1469 |
+
"free": true
|
| 1470 |
},
|
| 1471 |
{
|
| 1472 |
"name": "Wix",
|
|
|
|
| 1501 |
"video": "https://www.youtube.com/embed/vdaXGeOyvbE?si=AJz1NPiEnfnklArg",
|
| 1502 |
"isNew": false,
|
| 1503 |
"isFeatured": true,
|
| 1504 |
+
"rating": 5,
|
| 1505 |
+
"free": true
|
| 1506 |
},
|
| 1507 |
{
|
| 1508 |
"name": "מחולל תמונות",
|
| 1509 |
"description": "באמצעות מחולל תמונות AI, אתם יכולים להזין כל טקסט או רעיון שעולה בראשכם ולקבל תמונה ייחודית שנוצרה במיוחד עבורכם.",
|
| 1510 |
"url": "https://sagi-ai-image-model-comparision.streamlit.app/",
|
| 1511 |
+
"logo": "https://avatars.githubusercontent.com/u/139070971?v=4",
|
| 1512 |
"category": "image",
|
| 1513 |
"icon": "fas fa-image",
|
| 1514 |
"video": "https://www.youtube.com/embed/vXvVxbjTBVw?si=Ep8aVPMF0NB48_Q8",
|
| 1515 |
"isNew": false,
|
| 1516 |
"isFeatured": true,
|
| 1517 |
+
"rating": 5,
|
| 1518 |
+
"free": true
|
| 1519 |
},
|
| 1520 |
{
|
| 1521 |
"name": "שדרוג וידאו עם CapCut AI",
|
|
|
|
| 1527 |
"video": "https://www.youtube.com/embed/Iw__wI52UHU?si=5ZDctAYQLS71ma2f",
|
| 1528 |
"isNew": false,
|
| 1529 |
"isFeatured": false,
|
| 1530 |
+
"rating": 4,
|
| 1531 |
+
"free": true
|
| 1532 |
},
|
| 1533 |
|
| 1534 |
{
|
|
|
|
| 1541 |
"video": "https://www.youtube.com/embed/xj8COkST--8?si=QeYl05rW5dwQiYQT",
|
| 1542 |
"isNew": false,
|
| 1543 |
"isFeatured": true,
|
| 1544 |
+
"rating": 5,
|
| 1545 |
+
"free": true
|
| 1546 |
},
|
| 1547 |
{
|
| 1548 |
"name": "iLovePDF",
|
|
|
|
| 1581 |
"name": "speechgen",
|
| 1582 |
"description": "המרת טקסט לקול בעברית ובשפות נוספות - כולל מבטאים ורגש בקול.",
|
| 1583 |
"category": "audio",
|
| 1584 |
+
"url": "https://speechgen.io/he/ref/208381/",
|
| 1585 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEHbOvOYGlN3I0Pzfoy3TOmGuicaEGmLfBg&s",
|
| 1586 |
"icon": "fas fa-volume-down",
|
| 1587 |
"rating": 3,
|
|
|
|
| 1597 |
"icon": "fas fa-code",
|
| 1598 |
"rating": 3,
|
| 1599 |
"isNew": false,
|
| 1600 |
+
"isFeatured": false,
|
| 1601 |
+
"free": true
|
| 1602 |
}
|
| 1603 |
]
|