Spaces:
Running
Running
Commit
·
3a3a5b3
1
Parent(s):
8b6de29
update tools
Browse files- index_with_pwa_favicon.html +0 -1212
- index_with_tts.html +1864 -0
- tools.json +345 -333
index_with_pwa_favicon.html
DELETED
@@ -1,1212 +0,0 @@
|
|
1 |
-
<!--
|
2 |
-
https://thewitcher-sagi-ai-tools.static.hf.space/index.html
|
3 |
-
https://huggingface.co/spaces/theWitcher/sagi-ai-tools
|
4 |
-
|
5 |
-
https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
6 |
-
|
7 |
-
-->
|
8 |
-
<!DOCTYPE html>
|
9 |
-
|
10 |
-
<html dir="rtl" lang="he">
|
11 |
-
<head>
|
12 |
-
<meta charset="utf-8"/>
|
13 |
-
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
14 |
-
<title>ארגז הכלים שלי לבינה מלאכותית</title>
|
15 |
-
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"/>
|
16 |
-
<style>
|
17 |
-
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');
|
18 |
-
|
19 |
-
body {
|
20 |
-
font-family: 'Arimo', sans-serif;
|
21 |
-
background-color: #f9fafb;
|
22 |
-
}
|
23 |
-
|
24 |
-
.tool-card:hover {
|
25 |
-
transform: translateY(-5px);
|
26 |
-
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
27 |
-
}
|
28 |
-
|
29 |
-
.category-filter .active {
|
30 |
-
background-color: #3b82f6;
|
31 |
-
color: white;
|
32 |
-
}
|
33 |
-
|
34 |
-
.gradient-text {
|
35 |
-
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
|
36 |
-
-webkit-background-clip: text;
|
37 |
-
background-clip: text;
|
38 |
-
color: transparent;
|
39 |
-
}
|
40 |
-
|
41 |
-
/* RTL specific styles */
|
42 |
-
[dir="rtl"] .rotate-180 {
|
43 |
-
transform: rotate(180deg);
|
44 |
-
}
|
45 |
-
|
46 |
-
/* Mobile menu styles */
|
47 |
-
.mobile-menu {
|
48 |
-
max-height: 0;
|
49 |
-
overflow: hidden;
|
50 |
-
transition: max-height 0.3s ease-out;
|
51 |
-
}
|
52 |
-
|
53 |
-
.mobile-menu.open {
|
54 |
-
max-height: 500px;
|
55 |
-
}
|
56 |
-
|
57 |
-
/* Admin badge */
|
58 |
-
.admin-badge {
|
59 |
-
position: absolute;
|
60 |
-
top: -8px;
|
61 |
-
right: -8px;
|
62 |
-
background-color: #ef4444;
|
63 |
-
color: white;
|
64 |
-
border-radius: 9999px;
|
65 |
-
width: 20px;
|
66 |
-
height: 20px;
|
67 |
-
display: flex;
|
68 |
-
align-items: center;
|
69 |
-
justify-content: center;
|
70 |
-
font-size: 10px;
|
71 |
-
}
|
72 |
-
|
73 |
-
/* Futuristic profile image */
|
74 |
-
.profile-container {
|
75 |
-
position: relative;
|
76 |
-
width: 200px;
|
77 |
-
height: 200px;
|
78 |
-
margin: 0 auto;
|
79 |
-
}
|
80 |
-
|
81 |
-
.profile-image {
|
82 |
-
width: 100%;
|
83 |
-
height: 100%;
|
84 |
-
border-radius: 50%;
|
85 |
-
object-fit: cover;
|
86 |
-
border: 4px solid #3b82f6;
|
87 |
-
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
|
88 |
-
position: relative;
|
89 |
-
z-index: 2;
|
90 |
-
}
|
91 |
-
|
92 |
-
.tech-circle {
|
93 |
-
position: absolute;
|
94 |
-
border-radius: 50%;
|
95 |
-
border: 2px solid rgba(59, 130, 246, 0.7);
|
96 |
-
animation: rotate infinite linear;
|
97 |
-
}
|
98 |
-
|
99 |
-
.tech-circle-1 {
|
100 |
-
width: 220px;
|
101 |
-
height: 220px;
|
102 |
-
top: -10px;
|
103 |
-
left: -10px;
|
104 |
-
animation-duration: 15s;
|
105 |
-
border-style: dashed;
|
106 |
-
}
|
107 |
-
|
108 |
-
.tech-circle-2 {
|
109 |
-
width: 240px;
|
110 |
-
height: 240px;
|
111 |
-
top: -20px;
|
112 |
-
left: -20px;
|
113 |
-
animation-duration: 20s;
|
114 |
-
animation-direction: reverse;
|
115 |
-
}
|
116 |
-
|
117 |
-
.tech-circle-3 {
|
118 |
-
width: 260px;
|
119 |
-
height: 260px;
|
120 |
-
top: -30px;
|
121 |
-
left: -30px;
|
122 |
-
animation-duration: 25s;
|
123 |
-
border-style: dotted;
|
124 |
-
}
|
125 |
-
|
126 |
-
@keyframes rotate {
|
127 |
-
from { transform: rotate(0deg); }
|
128 |
-
to { transform: rotate(360deg); }
|
129 |
-
}
|
130 |
-
|
131 |
-
.tech-dots {
|
132 |
-
position: absolute;
|
133 |
-
width: 100%;
|
134 |
-
height: 100%;
|
135 |
-
border-radius: 50%;
|
136 |
-
z-index: 1;
|
137 |
-
}
|
138 |
-
|
139 |
-
.tech-dot {
|
140 |
-
position: absolute;
|
141 |
-
width: 8px;
|
142 |
-
height: 8px;
|
143 |
-
background-color: #8b5cf6;
|
144 |
-
border-radius: 50%;
|
145 |
-
transform: translate(-50%, -50%);
|
146 |
-
}
|
147 |
-
|
148 |
-
/* Futuristic AI elements */
|
149 |
-
.ai-particle {
|
150 |
-
position: absolute;
|
151 |
-
background: linear-gradient(135deg, #3b82f6, #8b5cf6);
|
152 |
-
border-radius: 50%;
|
153 |
-
opacity: 0.6;
|
154 |
-
filter: blur(10px);
|
155 |
-
z-index: 0;
|
156 |
-
}
|
157 |
-
|
158 |
-
.ai-circuit {
|
159 |
-
position: absolute;
|
160 |
-
width: 100%;
|
161 |
-
height: 100%;
|
162 |
-
background-image:
|
163 |
-
radial-gradient(circle at center, transparent 0%, #f9fafb 100%),
|
164 |
-
linear-gradient(90deg, transparent 49%, rgba(59, 130, 246, 0.1) 50%, transparent 51%),
|
165 |
-
linear-gradient(0deg, transparent 49%, rgba(59, 130, 246, 0.1) 50%, transparent 51%);
|
166 |
-
background-size: 20px 20px;
|
167 |
-
border-radius: 50%;
|
168 |
-
opacity: 0.3;
|
169 |
-
}
|
170 |
-
/* Added cursor style for clickable stats */
|
171 |
-
.clickable-stat:hover {
|
172 |
-
cursor: pointer;
|
173 |
-
background-color: #f3f4f6; /* Slightly lighter gray on hover */
|
174 |
-
}
|
175 |
-
</style>
|
176 |
-
<!-- Google tag (gtag.js) -->
|
177 |
-
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-JVF8N1DVSG"></script>
|
178 |
-
<script>
|
179 |
-
window.dataLayer = window.dataLayer || [];
|
180 |
-
function gtag(){dataLayer.push(arguments);}
|
181 |
-
gtag('js', new Date());
|
182 |
-
|
183 |
-
gtag('config', 'G-JVF8N1DVSG');
|
184 |
-
</script>
|
185 |
-
<link href="favicon-32.png" rel="icon" sizes="32x32" type="image/png"/><link href="manifest.json" rel="manifest"/><meta content="yes" name="apple-mobile-web-app-capable"/><meta content="AI Tools" name="apple-mobile-web-app-title"/><link href="icon-192.png" rel="apple-touch-icon"/><meta content="#3b82f6" name="theme-color"/></head>
|
186 |
-
<body class="min-h-screen">
|
187 |
-
<div class="hidden bg-green-100 text-green-800 text-center py-2 text-sm font-semibold" id="newToolBanner">
|
188 |
-
🎉 התווסף כלי חדש: <span id="newToolName"></span> – <a class="underline" href="#toolsContainer">צפו עכשיו</a>
|
189 |
-
<button class="ml-4 text-green-800 font-bold" id="closeBanner">×</button>
|
190 |
-
</div>
|
191 |
-
<!-- Header -->
|
192 |
-
<header class="sticky top-0 z-50 backdrop-blur-md bg-white/80 shadow-md border-b border-gray-200">
|
193 |
-
<div class="container mx-auto px-4 py-4">
|
194 |
-
<div class="flex justify-between items-center">
|
195 |
-
<div class="flex items-center">
|
196 |
-
<!-- Mobile menu button -->
|
197 |
-
<button class="md:hidden text-gray-600 mr-4" id="mobileMenuButton">
|
198 |
-
<i class="fas fa-bars text-xl"></i>
|
199 |
-
</button>
|
200 |
-
<div>
|
201 |
-
<h1 class="text-2xl md:text-3xl font-bold gradient-text">ארגז הכלים שלי ל-AI</h1>
|
202 |
-
<p class="text-gray-600 text-sm md:text-base mt-1">אוסף כלי הבינה המלאכותית המומלצים שלי</p>
|
203 |
-
</div>
|
204 |
-
</div>
|
205 |
-
<div class="hidden md:flex items-center space-x-4 space-x-reverse">
|
206 |
-
<!-- /* --- Refresh Button - Still useful for resetting filters/sort --- */ -->
|
207 |
-
<button class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300" id="refreshBtn">
|
208 |
-
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
209 |
-
</button>
|
210 |
-
<!-- /* --- Admin Edit Button - Uncomment if needed --- */ -->
|
211 |
-
<button class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative" id="editJsonBtn">
|
212 |
-
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
213 |
-
<span class="admin-badge">N</span>
|
214 |
-
</button>
|
215 |
-
</div>
|
216 |
-
</div>
|
217 |
-
<!-- /* --- Mobile menu --- */ -->
|
218 |
-
<div class="mobile-menu md:hidden mt-4" id="mobileMenu">
|
219 |
-
<div class="flex flex-col space-y-2 py-2">
|
220 |
-
<button class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300" id="refreshBtnMobile">
|
221 |
-
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
222 |
-
</button>
|
223 |
-
<!-- /* --- Admin Edit Button (Mobile) - Uncomment if needed --- */ -->
|
224 |
-
<button class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative" id="editJsonBtn">
|
225 |
-
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
226 |
-
<span class="admin-badge">N</span>
|
227 |
-
</button>
|
228 |
-
</div>
|
229 |
-
</div>
|
230 |
-
</div>
|
231 |
-
</header>
|
232 |
-
<!-- /* --- Main Content --- */ -->
|
233 |
-
<main class="container mx-auto px-4 py-8">
|
234 |
-
<!-- /* --- About Me Section --- */ -->
|
235 |
-
<div class="bg-white rounded-lg shadow-sm p-6 border border-gray-100 mb-8 relative overflow-hidden">
|
236 |
-
<!-- /* ... (content unchanged) ... */ -->
|
237 |
-
<div class="ai-particle" style="width: 100px; height: 100px; top: -30px; right: -30px;"></div>
|
238 |
-
<div class="ai-particle" style="width: 150px; height: 150px; bottom: -50px; left: -50px;"></div>
|
239 |
-
<div class="ai-particle" style="width: 80px; height: 80px; top: 50%; right: 20%;"></div>
|
240 |
-
<h2 class="text-2xl font-bold mb-6 text-gray-800 border-b pb-2">קצת עליי</h2>
|
241 |
-
<div class="flex flex-col md:flex-row gap-6">
|
242 |
-
<div class="md:w-1/3">
|
243 |
-
<div class="profile-container">
|
244 |
-
<div class="ai-circuit"></div>
|
245 |
-
<div class="tech-circle tech-circle-1"></div>
|
246 |
-
<div class="tech-circle tech-circle-2"></div>
|
247 |
-
<div class="tech-circle tech-circle-3"></div>
|
248 |
-
<div class="tech-dots">
|
249 |
-
<div class="tech-dot" style="top: 10%; left: 50%;"></div>
|
250 |
-
<div class="tech-dot" style="top: 50%; left: 10%;"></div>
|
251 |
-
<div class="tech-dot" style="top: 90%; left: 50%;"></div>
|
252 |
-
<div class="tech-dot" style="top: 50%; left: 90%;"></div>
|
253 |
-
<div class="tech-dot" style="top: 30%; left: 30%;"></div>
|
254 |
-
<div class="tech-dot" style="top: 70%; left: 70%;"></div>
|
255 |
-
<div class="tech-dot" style="top: 30%; left: 70%;"></div>
|
256 |
-
<div class="tech-dot" style="top: 70%; left: 30%;"></div>
|
257 |
-
</div>
|
258 |
-
<img alt="שגיא בר און" class="profile-image" src="https://i.imgur.com/cnlxCuj.jpeg"/>
|
259 |
-
</div>
|
260 |
-
</div>
|
261 |
-
<div class="md:w-2/3">
|
262 |
-
<h3 class="text-xl font-semibold mb-4">שגיא בר און</h3>
|
263 |
-
<p class="text-gray-700 mb-4">
|
264 |
-
אני חוקר ויועץ בתחום הבינה המלאכותית, מאסטר NLP, ובעל ניסיון של למעלה מ-25 שנה בתעשיית ההייטק. בעל מומחיות רחבה בפיתוח תוכנה, אוטומציה, ניהול פרויקטים ואסטרטגיה עסקית.
|
265 |
-
</p>
|
266 |
-
<p class="text-gray-700 mb-4">
|
267 |
-
מרצה אורח באוניברסיטת רייכמן וחבר בסגל הבוחנים של מה"ט - המכון הממשלתי להכשרה בטכנולוגיה ובמדע - לבחינות מהנדסי תוכנה באוניברסיטאות ובמכללות, וכן מנטור לAI במסגרת משרד החינוך.
|
268 |
-
</p>
|
269 |
-
<p class="text-gray-700 mb-4">
|
270 |
-
בעל תואר שני במנהל עסקים עם התמחות בבינה מלאכותית, תואר ראשון (BSc) במדעי המחשב והנדסאי תוכנה. ההרצאות משלבות ידע עדכני, חשיבה ביקורתית והתנסות חווייתית, מתוך מטרה להעצים אנשים ולאפשר להם להשתמש בטכנולוגיה בחוכמה ובקלות.
|
271 |
-
</p>
|
272 |
-
<p class="text-gray-700">
|
273 |
-
שמתי לי למטרה להנגיש, להסביר ולחבר את הטכנולוגיה בצורה פשוטה וברורה לכולם.
|
274 |
-
</p>
|
275 |
-
</div>
|
276 |
-
</div>
|
277 |
-
</div>
|
278 |
-
<!-- /* --- Search and Filters --- */ -->
|
279 |
-
<div class="mb-8">
|
280 |
-
<!-- /* ... (content unchanged) ... */ -->
|
281 |
-
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
|
282 |
-
<div class="relative w-full md:w-96">
|
283 |
-
<input class="w-full pr-10 pl-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition" id="searchInput" placeholder="חפש כלים..." type="text"/>
|
284 |
-
<i class="fas fa-search absolute right-3 top-3.5 text-gray-400"></i>
|
285 |
-
</div>
|
286 |
-
<div class="flex items-center space-x-2 space-x-reverse">
|
287 |
-
<span class="text-gray-600 hidden md:block">סנן לפי:</span>
|
288 |
-
<div class="category-filter flex flex-wrap gap-2">
|
289 |
-
<button 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" data-category="all">הכל</button>
|
290 |
-
<button 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" data-category="productivity">פרודוקטיביות</button>
|
291 |
-
<button 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" data-category="writing">כתיבה</button>
|
292 |
-
<button 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" data-category="design">עיצוב</button>
|
293 |
-
<button 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" data-category="coding">תכנות</button>
|
294 |
-
<button 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" data-category="video">וידאו</button>
|
295 |
-
</div>
|
296 |
-
</div>
|
297 |
-
</div>
|
298 |
-
</div>
|
299 |
-
<!-- /* --- Stats --- */ -->
|
300 |
-
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-8">
|
301 |
-
<!-- /* ... (content unchanged, including clickable stat boxes) ... */ -->
|
302 |
-
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
|
303 |
-
<div class="flex items-center">
|
304 |
-
<div class="p-3 rounded-full bg-blue-50 text-blue-600 ml-3"> <i class="fas fa-tools text-lg"></i> </div>
|
305 |
-
<div> <p class="text-gray-500 text-sm">סה"כ כלים</p> <h3 class="text-xl font-semibold" id="totalTools">0</h3> </div>
|
306 |
-
</div>
|
307 |
-
</div>
|
308 |
-
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 transition clickable-stat" id="topRatedStatBox">
|
309 |
-
<div class="flex items-center">
|
310 |
-
<div class="p-3 rounded-full bg-purple-50 text-purple-600 ml-3"> <i class="fas fa-star text-lg"></i> </div>
|
311 |
-
<div> <p class="text-gray-500 text-sm">מובילים בדירוג</p> <h3 class="text-xl font-semibold" id="topRated">0</h3> </div>
|
312 |
-
</div>
|
313 |
-
</div>
|
314 |
-
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 transition clickable-stat" id="newToolsStatBox">
|
315 |
-
<div class="flex items-center">
|
316 |
-
<div class="p-3 rounded-full bg-green-50 text-green-600 ml-3"> <i class="fas fa-bolt text-lg"></i> </div>
|
317 |
-
<div> <p class="text-gray-500 text-sm">חדשים השבוע</p> <h3 class="text-xl font-semibold" id="newTools">0</h3> </div>
|
318 |
-
</div>
|
319 |
-
</div>
|
320 |
-
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
|
321 |
-
<div class="flex items-center">
|
322 |
-
<div class="p-3 rounded-full bg-yellow-50 text-yellow-600 ml-3"> <i class="fas fa-tags text-lg"></i> </div>
|
323 |
-
<div> <p class="text-gray-500 text-sm">קטגוריות</p> <h3 class="text-xl font-semibold" id="totalCategories">0</h3> </div>
|
324 |
-
</div>
|
325 |
-
</div>
|
326 |
-
</div>
|
327 |
-
<!-- /* --- Tools Grid --- */ -->
|
328 |
-
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" id="toolsContainer">
|
329 |
-
<!-- /* --- Tools will be loaded here --- */ -->
|
330 |
-
<p class="text-center text-gray-500 col-span-full" id="loadingMessage">טוען כלים...</p>
|
331 |
-
</div>
|
332 |
-
<!-- /* --- YouTube Videos Section --- */ -->
|
333 |
-
<div class="mt-16">
|
334 |
-
<!-- /* ... (content unchanged) ... */ -->
|
335 |
-
<h2 class="text-2xl font-bold mb-6 text-gray-800 border-b pb-2">סרטונים נבחרים מערוץ היוטיוב שלי</h2>
|
336 |
-
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" id="videosContainer">
|
337 |
-
<!-- /* --- Videos will be loaded here --- */ -->
|
338 |
-
</div>
|
339 |
-
</div>
|
340 |
-
</main>
|
341 |
-
<!-- /* --- JSON Editor Modal (Admin Feature) --- */ -->
|
342 |
-
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden" id="jsonEditorModal">
|
343 |
-
<!-- /* ... (content unchanged) ... */ -->
|
344 |
-
<div class="bg-white rounded-lg shadow-xl w-full max-w-4xl max-h-[90vh] flex flex-col">
|
345 |
-
<div class="px-6 py-4 border-b border-gray-200 flex justify-between items-center">
|
346 |
-
<h3 class="text-lg font-semibold">עריכת הנתונים ב-JSON</h3>
|
347 |
-
<button class="text-gray-500 hover:text-gray-700" id="closeModalBtn"><i class="fas fa-times"></i></button>
|
348 |
-
</div>
|
349 |
-
<div class="p-6 flex-1 overflow-auto">
|
350 |
-
<div class="flex mb-4">
|
351 |
-
<button class="px-4 py-2 bg-blue-600 text-white rounded-l-lg" id="showToolsBtn">כלים</button>
|
352 |
-
<button class="px-4 py-2 bg-gray-200 text-gray-700 rounded-r-lg" id="showVideosBtn">סרטונים</button>
|
353 |
-
</div>
|
354 |
-
<textarea class="w-full h-96 p-4 border border-gray-300 rounded-lg font-mono text-sm spellcheck=" false"="" id="jsonEditor" style="direction: ltr; text-align: left;"></textarea>
|
355 |
-
</div>
|
356 |
-
<div class="px-6 py-4 border-t border-gray-200 flex justify-end space-x-3 space-x-reverse">
|
357 |
-
<button class="px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50 transition" id="cancelEditBtn">ביטול</button>
|
358 |
-
<button class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition" id="saveJsonBtn">שמור שינויים (באחסון המקומי)</button>
|
359 |
-
</div>
|
360 |
-
</div>
|
361 |
-
</div>
|
362 |
-
<div class="fixed inset-0 bg-black bg-opacity-40 flex items-center justify-center z-[9999] px-4 hidden" id="suggestToolModal">
|
363 |
-
<div class="bg-white rounded-lg w-full max-w-md shadow-lg max-h-[90vh] overflow-hidden flex flex-col text-right relative">
|
364 |
-
<!-- תוכן -->
|
365 |
-
<div class="p-6 overflow-y-auto flex-grow">
|
366 |
-
<h2 class="text-xl font-semibold mb-4">הצעת כלי חדש</h2>
|
367 |
-
<form class="space-y-4" id="suggestToolForm">
|
368 |
-
<div>
|
369 |
-
<label class="block mb-1">שם הכלי</label>
|
370 |
-
<input class="w-full border rounded p-2" name="name" required="" type="text"/>
|
371 |
-
</div>
|
372 |
-
<div>
|
373 |
-
<label class="block mb-1">לינק</label>
|
374 |
-
<input class="w-full border rounded p-2" dir="ltr" name="url" placeholder="כתובת URL של הכלי: לדוגמא: https://linktr.ee/sagib" required="" type="url"/>
|
375 |
-
</div>
|
376 |
-
<div>
|
377 |
-
<label class="block mb-1">תיאור קצר</label>
|
378 |
-
<textarea class="w-full border rounded p-2" name="description" required=""></textarea>
|
379 |
-
</div>
|
380 |
-
<div>
|
381 |
-
<label class="block mb-1">השם שלך</label>
|
382 |
-
<input class="w-full border rounded p-2" name="userName" placeholder="איך לקרוא לך כשנחזור אליך?" type="text"/>
|
383 |
-
</div>
|
384 |
-
<div>
|
385 |
-
<label class="block mb-1">מס' טלפון נייד</label>
|
386 |
-
<input class="w-full border rounded p-2" dir="ltr" name="userPhone" placeholder="05X-XXXXXXX" type="tel"/>
|
387 |
-
</div>
|
388 |
-
<p class="text-sm text-gray-500">נשמח לחזור אליך כשהכלי שצעת נוסף לאתר ❤️</p>
|
389 |
-
<p class="text-sm text-gray-500 italic">✦ הפרטים שלך נשמרים אצלנו רק לצורך עדכון – אין שימוש אחר.</p>
|
390 |
-
</form>
|
391 |
-
</div>
|
392 |
-
<!-- כפתורים קבועים בתחתית -->
|
393 |
-
<div class="sticky bottom-0 bg-white/80 backdrop-blur-md px-6 py-4 border-t flex justify-center space-x-4 space-x-reverse z-10 rounded-b-lg">
|
394 |
-
<button class="px-5 py-2 bg-gray-200 text-gray-800 rounded hover:bg-gray-300" onclick="closeSuggestModal()" type="button">ביטול</button>
|
395 |
-
<button class="px-6 py-2 bg-purple-600 text-white rounded hover:bg-purple-700" form="suggestToolForm" type="submit">שלח</button>
|
396 |
-
</div>
|
397 |
-
</div>
|
398 |
-
</div>
|
399 |
-
<div class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center hidden z-[9999]" id="videoModal">
|
400 |
-
<div class="bg-white rounded-lg overflow-hidden w-full max-w-3xl shadow-lg relative">
|
401 |
-
<button class="absolute top-2 left-2 text-gray-700 hover:text-red-600 text-xl" onclick="closeVideoModal()">
|
402 |
-
<i class="fas fa-times"></i>
|
403 |
-
</button>
|
404 |
-
<iframe allowfullscreen="" class="w-full h-[300px] sm:h-[500px]" frameborder="0" id="videoIframe" src=""></iframe>
|
405 |
-
</div>
|
406 |
-
</div>
|
407 |
-
<!-- /* --- Footer --- */ -->
|
408 |
-
<footer class="fixed bottom-0 left-0 w-full z-50 backdrop-blur-md bg-white/80 shadow-xl border-t border-gray-200">
|
409 |
-
<!-- הוספת כפתור צ'אט צף לקובץ index.html -->
|
410 |
-
<!-- Improved Chat Component -->
|
411 |
-
<div class="fixed bottom-8 right-5 z-[9999]" id="chatBubble">
|
412 |
-
<!-- Introductory message -->
|
413 |
-
<div class="bg-white p-3 rounded-lg shadow-md mb-2 text-sm max-w-xs chat-intro-enter hidden" id="chatIntro">
|
414 |
-
שלום! אני עוזר AI של שגיא. אשמח ל��זור לך למצוא כלי AI מתאים או לענות על שאלות.
|
415 |
-
<button class="text-gray-500 float-left" onclick="hideChatIntro()">
|
416 |
-
<i class="fas fa-times"></i>
|
417 |
-
</button>
|
418 |
-
</div>
|
419 |
-
<!-- Chat Button -->
|
420 |
-
<button class="chat-pulse bg-gradient-to-r from-purple-500 to-indigo-600 hover:from-purple-600 hover:to-indigo-700 text-white px-4 py-3 rounded-full shadow-xl flex items-center space-x-2 space-x-reverse" id="chatButton" onclick="toggleChatWindow()">
|
421 |
-
<i class="fas fa-robot"></i>
|
422 |
-
<span>צ'אט</span>
|
423 |
-
</button>
|
424 |
-
<!-- Chat Window -->
|
425 |
-
<div class="hidden mt-3 w-[360px] h-[500px] bg-white rounded-2xl shadow-2xl border border-gray-200 overflow-hidden relative" id="chatWindow">
|
426 |
-
<!-- Chat Header -->
|
427 |
-
<div class="bg-gradient-to-r from-purple-500 to-indigo-600 text-white p-3 flex justify-between items-center">
|
428 |
-
<button class="text-white" onclick="toggleChatWindow()">
|
429 |
-
<i class="fas fa-times"></i>
|
430 |
-
</button>
|
431 |
-
<div class="chat-header">
|
432 |
-
צ'אט עם הבינה של שגיא
|
433 |
-
<span class="ml-2 text-sm bg-white text-purple-600 font-semibold px-2 py-1 rounded-full shadow-sm" id="toolsCount"></span>
|
434 |
-
</div>
|
435 |
-
<!-- <div class="font-medium">עוזר AI של שגיא</div> -->
|
436 |
-
<div class="w-6"></div> <!-- Spacer for balance -->
|
437 |
-
</div>
|
438 |
-
<!-- Chat iframe -->
|
439 |
-
<iframe class="w-full h-full border-none" src="https://sagi-ba-sagi-ai-tools-chatbot-main-g1prqf.streamlit.app/?embed=true"></iframe>
|
440 |
-
</div>
|
441 |
-
</div>
|
442 |
-
<script>
|
443 |
-
function toggleChatWindow() {
|
444 |
-
const chatWindow = document.getElementById("chatWindow");
|
445 |
-
chatWindow.classList.toggle("hidden");
|
446 |
-
}
|
447 |
-
</script>
|
448 |
-
<!-- <span>© 2025 כל הזכויות שמורות לשגיא בר און.</span> -->
|
449 |
-
<div class="container mx-auto px-4 py-3 text-center space-y-2">
|
450 |
-
<div class="flex justify-center gap-4">
|
451 |
-
<!-- אייקונים -->
|
452 |
-
<a class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-green-500 hover:bg-green-500 hover:text-white transition" href="https://chat.whatsapp.com/GPFASYBEA9CFGUMCVZ5RXP" target="_blank"><i class="fab fa-whatsapp"></i></a>
|
453 |
-
<a class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-500 hover:bg-blue-700 hover:text-white transition" href="http://www.linkedin.com/in/sagi-bar-on" target="_blank"><i class="fab fa-linkedin-in"></i></a>
|
454 |
-
<a class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-600 hover:bg-blue-800 hover:text-white transition" href="https://www.facebook.com/SAGI.BARON" target="_blank"><i class="fab fa-facebook-f"></i></a>
|
455 |
-
<a class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-red-500 hover:bg-red-700 hover:text-white transition" href="https://www.youtube.com/@SAGIBARON" target="_blank"><i class="fab fa-youtube"></i></a>
|
456 |
-
</div>
|
457 |
-
<button class="px-4 py-2 rounded-xl bg-gradient-to-br from-pink-500 to-purple-600 text-white font-bold shadow hover:scale-105 transition" id="editJsonBtnFooter">
|
458 |
-
<i class="fas fa-pen-to-square ml-2"></i> הציעו כלי חדש
|
459 |
-
</button>
|
460 |
-
<p class="text-gray-500 text-xs">© 2025 כל הזכויות שמורות לשגיא בר און</p>
|
461 |
-
</div>
|
462 |
-
|
463 |
-
</footer>
|
464 |
-
<!-- /* --- Load Tailwind CSS via CDN --- */ -->
|
465 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
466 |
-
<!-- /* ----------------------------------- */
|
467 |
-
/* ------- START OF JAVASCRIPT ------- */
|
468 |
-
/* ----------------------------------- */ -->
|
469 |
-
<script>
|
470 |
-
// --- DOM Elements ---
|
471 |
-
const toolsContainer = document.getElementById('toolsContainer');
|
472 |
-
const videosContainer = document.getElementById('videosContainer');
|
473 |
-
const searchInput = document.getElementById('searchInput');
|
474 |
-
const filterButtons = document.querySelectorAll('.filter-btn');
|
475 |
-
const totalToolsElement = document.getElementById('totalTools');
|
476 |
-
const topRatedElement = document.getElementById('topRated');
|
477 |
-
const newToolsElement = document.getElementById('newTools');
|
478 |
-
const totalCategoriesElement = document.getElementById('totalCategories');
|
479 |
-
const mobileMenuButton = document.getElementById('mobileMenuButton');
|
480 |
-
const mobileMenu = document.getElementById('mobileMenu');
|
481 |
-
const jsonEditorModal = document.getElementById('jsonEditorModal');
|
482 |
-
const jsonEditor = document.getElementById('jsonEditor');
|
483 |
-
const closeModalBtn = document.getElementById('closeModalBtn');
|
484 |
-
const cancelEditBtn = document.getElementById('cancelEditBtn');
|
485 |
-
const saveJsonBtn = document.getElementById('saveJsonBtn');
|
486 |
-
const showToolsBtn = document.getElementById('showToolsBtn');
|
487 |
-
const showVideosBtn = document.getElementById('showVideosBtn');
|
488 |
-
const refreshBtn = document.getElementById('refreshBtn');
|
489 |
-
const refreshBtnMobile = document.getElementById('refreshBtnMobile');
|
490 |
-
const loadingMessage = document.getElementById('loadingMessage'); // For showing loading status
|
491 |
-
|
492 |
-
const topRatedStatBox = document.getElementById('topRatedStatBox');
|
493 |
-
const newToolsStatBox = document.getElementById('newToolsStatBox');
|
494 |
-
const totalToolsStatBox = document.querySelector('[id="totalTools"]').closest('.bg-white');
|
495 |
-
let filteredStatView = null; // 'topRated', 'newTools', או null
|
496 |
-
|
497 |
-
if (totalToolsStatBox) {
|
498 |
-
totalToolsStatBox.classList.add('clickable-stat');
|
499 |
-
totalToolsStatBox.addEventListener('click', () => {
|
500 |
-
filteredStatView = null;
|
501 |
-
currentSearchTerm = '';
|
502 |
-
currentCategory = 'all';
|
503 |
-
document.querySelectorAll('.filter-btn').forEach(btn => btn.classList.remove('active'));
|
504 |
-
const allBtn = document.querySelector('.filter-btn[data-category="all"]');
|
505 |
-
if (allBtn) allBtn.classList.add('active');
|
506 |
-
renderTools();
|
507 |
-
scrollToTools();
|
508 |
-
});
|
509 |
-
}
|
510 |
-
|
511 |
-
if (topRatedStatBox) {
|
512 |
-
topRatedStatBox.addEventListener('click', () => {
|
513 |
-
filteredStatView = 'topRated';
|
514 |
-
currentSearchTerm = '';
|
515 |
-
currentCategory = 'all';
|
516 |
-
renderTools();
|
517 |
-
scrollToTools();
|
518 |
-
});
|
519 |
-
}
|
520 |
-
|
521 |
-
if (newToolsStatBox) {
|
522 |
-
newToolsStatBox.addEventListener('click', () => {
|
523 |
-
filteredStatView = 'newTools';
|
524 |
-
currentSearchTerm = '';
|
525 |
-
currentCategory = 'all';
|
526 |
-
renderTools();
|
527 |
-
scrollToTools();
|
528 |
-
});
|
529 |
-
}
|
530 |
-
|
531 |
-
// --- State ---
|
532 |
-
let currentCategory = 'all';
|
533 |
-
let currentSearchTerm = '';
|
534 |
-
let toolsData = { tools: [], videos: [] }; // Holds the data fetched from server
|
535 |
-
let currentSort = 'newest'; // 'newest', 'rating'
|
536 |
-
|
537 |
-
// --- Initialize ---
|
538 |
-
async function init() {
|
539 |
-
showLoading();
|
540 |
-
try {
|
541 |
-
const savedSearch = localStorage.getItem('searchTerm');
|
542 |
-
if (savedSearch) {
|
543 |
-
searchInput.value = savedSearch;
|
544 |
-
currentSearchTerm = savedSearch;
|
545 |
-
}
|
546 |
-
|
547 |
-
await loadData(); // ← הנתונים נטענים כאן
|
548 |
-
sortTools(currentSort);
|
549 |
-
renderTools();
|
550 |
-
renderVideos();
|
551 |
-
updateStats();
|
552 |
-
setupEventListeners();
|
553 |
-
|
554 |
-
// 👇 כאן נוסיף את הקריאה לבאנר לאחר שהכלים נטענו
|
555 |
-
showNewToolBanner();
|
556 |
-
|
557 |
-
if (!currentSearchTerm) {
|
558 |
-
const allFilterBtn = document.querySelector('.filter-btn[data-category="all"]');
|
559 |
-
if (allFilterBtn) {
|
560 |
-
allFilterBtn.classList.add('active');
|
561 |
-
}
|
562 |
-
}
|
563 |
-
} catch (error) {
|
564 |
-
console.error("Initialization failed:", error);
|
565 |
-
showError("שגיאה בטעינת הנתונים הראשונית. נסה לרענן את הדף.");
|
566 |
-
} finally {
|
567 |
-
hideLoading();
|
568 |
-
}
|
569 |
-
}
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
const speechSynthesis = window.speechSynthesis;
|
574 |
-
let currentUtterance = null;
|
575 |
-
|
576 |
-
// פונקציה להקראת טקסט בעברית
|
577 |
-
function speakText(text) {
|
578 |
-
// עצירת הקראה קודמת אם יש
|
579 |
-
if (speechSynthesis.speaking) {
|
580 |
-
speechSynthesis.cancel();
|
581 |
-
|
582 |
-
// אם זאת אותה הקראה שכבר פועלת, פשוט נעצור ונצא
|
583 |
-
if (currentUtterance && currentUtterance.text === text) {
|
584 |
-
currentUtterance = null;
|
585 |
-
return;
|
586 |
-
}
|
587 |
-
}
|
588 |
-
|
589 |
-
// יצירת הקראה חדשה
|
590 |
-
const utterance = new SpeechSynthesisUtterance(text);
|
591 |
-
|
592 |
-
// הגדרת השפה לעברית
|
593 |
-
utterance.lang = 'he-IL';
|
594 |
-
|
595 |
-
// בדיקת קולות זמינים ובחירת קול עברי
|
596 |
-
const voices = speechSynthesis.getVoices();
|
597 |
-
|
598 |
-
|
599 |
-
if (voices.length) {
|
600 |
-
const hebrewVoice = voices.find(voice => /he|hebrew|ivrit/i.test(voice.lang));
|
601 |
-
|
602 |
-
if (hebrewVoice) {
|
603 |
-
utterance.voice = hebrewVoice;
|
604 |
-
console.log("נבחר קול עברי:", hebrewVoice.name);
|
605 |
-
} else {
|
606 |
-
console.log("לא נמצא קול עברי, משתמש בקול ברירת מחדל");
|
607 |
-
}
|
608 |
-
// ננסה להשתמש בקול גוגל
|
609 |
-
const googleVoice = voices.find(voice =>
|
610 |
-
voice.name.includes('Google') &&
|
611 |
-
(voice.name.includes('US') || voice.name.includes('UK'))
|
612 |
-
);
|
613 |
-
|
614 |
-
|
615 |
-
if (googleVoice) {
|
616 |
-
utterance.voice = googleVoice;
|
617 |
-
}
|
618 |
-
} else {
|
619 |
-
// במקרה שהקולות עדיין לא נטענו, נגדיר מאזין חד-פעמי
|
620 |
-
speechSynthesis.addEventListener('voiceschanged', function loadVoice() {
|
621 |
-
const voices = speechSynthesis.getVoices();
|
622 |
-
const hebrewVoice = voices.find(voice => /he|hebrew|ivrit/i.test(voice.lang));
|
623 |
-
if (hebrewVoice) {
|
624 |
-
utterance.voice = hebrewVoice;
|
625 |
-
console.log("נבחר קול עברי (מדחייה):", hebrewVoice.name);
|
626 |
-
}
|
627 |
-
// הסרת המאזין אחרי הפעלה ראשונה
|
628 |
-
speechSynthesis.removeEventListener('voiceschanged', loadVoice);
|
629 |
-
}, { once: true });
|
630 |
-
}
|
631 |
-
|
632 |
-
// שמירת ההקראה הנוכחית
|
633 |
-
currentUtterance = utterance;
|
634 |
-
|
635 |
-
// טיפול באירוע סיום הקראה
|
636 |
-
utterance.onend = () => {
|
637 |
-
currentUtterance = null;
|
638 |
-
|
639 |
-
// עדכון כל הכפתורים למצב "לא מנגן"
|
640 |
-
document.querySelectorAll('.speak-button').forEach(btn => {
|
641 |
-
btn.innerHTML = '<i class="fas fa-volume-up"></i>';
|
642 |
-
btn.classList.remove('speaking');
|
643 |
-
});
|
644 |
-
};
|
645 |
-
|
646 |
-
// הפעלת ההקראה
|
647 |
-
speechSynthesis.speak(utterance);
|
648 |
-
}
|
649 |
-
|
650 |
-
// --- UI Feedback ---
|
651 |
-
function showLoading() {
|
652 |
-
if (loadingMessage) loadingMessage.style.display = 'block';
|
653 |
-
if (toolsContainer) toolsContainer.innerHTML = ''; // Clear container while loading
|
654 |
-
}
|
655 |
-
|
656 |
-
function hideLoading() {
|
657 |
-
if (loadingMessage) loadingMessage.style.display = 'none';
|
658 |
-
}
|
659 |
-
|
660 |
-
function showError(message) {
|
661 |
-
if (toolsContainer) {
|
662 |
-
toolsContainer.innerHTML = `<p class="text-center text-red-600 col-span-full">${message}</p>`;
|
663 |
-
}
|
664 |
-
hideLoading(); // Make sure loading message is hidden
|
665 |
-
}
|
666 |
-
|
667 |
-
// --- Data Fetching ---
|
668 |
-
async function fetchDefaultData() {
|
669 |
-
console.log("Fetching latest data from server..."); // Log fetching attempt
|
670 |
-
try {
|
671 |
-
const [toolsResponse, videosResponse] = await Promise.all([
|
672 |
-
fetch('tools.json?cacheBust=' + Date.now()), // Cache busting
|
673 |
-
fetch('videos.json?cacheBust=' + Date.now()) // Cache busting
|
674 |
-
]);
|
675 |
-
|
676 |
-
if (!toolsResponse.ok || !videosResponse.ok) {
|
677 |
-
const errorMsg = `HTTP error! Status: Tools ${toolsResponse.status}, Videos ${videosResponse.status}`;
|
678 |
-
console.error(errorMsg);
|
679 |
-
throw new Error("שגיאה בקבלת נתונים מהשרת."); // User-friendly error
|
680 |
-
}
|
681 |
-
|
682 |
-
const [toolsArray, videosArray] = await Promise.all([
|
683 |
-
toolsResponse.json(),
|
684 |
-
videosResponse.json()
|
685 |
-
]);
|
686 |
-
|
687 |
-
// --- Process fetched data with defaults ---
|
688 |
-
const processedTools = toolsArray.map(tool => ({
|
689 |
-
...tool, rating: tool.rating ?? 0, isNew: tool.isNew ?? false,
|
690 |
-
category: tool.category ?? 'general', icon: tool.icon || 'fas fa-tools',
|
691 |
-
url: tool.url || '#', description: tool.description || 'אין תיאור זמין.',
|
692 |
-
name: tool.name || 'שם לא ידוע'
|
693 |
-
}));
|
694 |
-
const processedVideos = videosArray.map(video => ({
|
695 |
-
...video, url: video.url || '#', title: video.title || 'כותרת חסרה',
|
696 |
-
description: video.description || 'אין תיאור זמין.',
|
697 |
-
date: video.date ?? new Date().toISOString()
|
698 |
-
}));
|
699 |
-
|
700 |
-
console.log("Data fetched successfully.");
|
701 |
-
return { tools: processedTools, videos: processedVideos };
|
702 |
-
|
703 |
-
} catch (error) {
|
704 |
-
console.error("Failed to fetch default data:", error);
|
705 |
-
// Re-throw the error or a more specific one to be caught by the caller
|
706 |
-
throw new Error("כשל בטעינת נתוני ברירת המחדל מהשרת. בדוק את הקבצים tools.json ו-videos.json.");
|
707 |
-
}
|
708 |
-
}
|
709 |
-
|
710 |
-
// --- Data Loading Strategy ---
|
711 |
-
// MODIFIED: Always fetch fresh data from the server on load.
|
712 |
-
async function loadData() {
|
713 |
-
console.log("loadData called - fetching fresh data.");
|
714 |
-
try {
|
715 |
-
toolsData = await fetchDefaultData();
|
716 |
-
// Note: We are NOT saving to localStorage here anymore for loading purposes.
|
717 |
-
// saveData(); // Removed - No longer saving fetched data automatically
|
718 |
-
} catch (error) {
|
719 |
-
console.error("Error in loadData:", error);
|
720 |
-
toolsData = { tools: [], videos: [] }; // Set empty data on error
|
721 |
-
// Re-throw error so init() can handle UI feedback
|
722 |
-
throw error;
|
723 |
-
}
|
724 |
-
}
|
725 |
-
|
726 |
-
// --- Save Data to Local Storage (Used ONLY by JSON Editor) ---
|
727 |
-
// Note: Data saved here will be overwritten on next page load/refresh.
|
728 |
-
function saveData() {
|
729 |
-
try {
|
730 |
-
// Save the current state (potentially modified by editor) to localStorage
|
731 |
-
localStorage.setItem('aiToolsData', JSON.stringify(toolsData));
|
732 |
-
console.log("Data saved to localStorage (by editor). Will be overwritten on next load.");
|
733 |
-
} catch (e) {
|
734 |
-
console.error("Error saving data to localStorage:", e);
|
735 |
-
alert("שגיאה בשמירת הנתונים באחסון המקומי.");
|
736 |
-
}
|
737 |
-
}
|
738 |
-
|
739 |
-
// --- Sorting Function (Unchanged) ---
|
740 |
-
function sortTools(sortBy) {
|
741 |
-
if (!toolsData || !Array.isArray(toolsData.tools)) return;
|
742 |
-
console.log("Sorting by:", sortBy);
|
743 |
-
currentSort = sortBy;
|
744 |
-
toolsData.tools.sort((a, b) => {
|
745 |
-
if (sortBy === 'newest') {
|
746 |
-
const aIsNew = a.isNew || false; const bIsNew = b.isNew || false;
|
747 |
-
if (aIsNew !== bIsNew) return bIsNew - aIsNew;
|
748 |
-
return 0;
|
749 |
-
} else if (sortBy === 'rating') {
|
750 |
-
const aRating = a.rating || 0; const bRating = b.rating || 0;
|
751 |
-
if (bRating !== aRating) return bRating - aRating;
|
752 |
-
return 0;
|
753 |
-
}
|
754 |
-
return 0;
|
755 |
-
});
|
756 |
-
}
|
757 |
-
function scrollToTools() {
|
758 |
-
const toolsSection = document.getElementById("toolsContainer");
|
759 |
-
if (toolsSection) {
|
760 |
-
toolsSection.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
761 |
-
}
|
762 |
-
}
|
763 |
-
|
764 |
-
// --- Rendering Functions (Unchanged logic, but added hideLoading) ---
|
765 |
-
function renderTools() {
|
766 |
-
hideLoading(); // Ensure loading message is hidden before rendering
|
767 |
-
if (!toolsContainer || !toolsData || !Array.isArray(toolsData.tools)) {
|
768 |
-
console.error("Cannot render tools: Missing container or invalid data.");
|
769 |
-
showError("שגיאה בהצגת הכלים.");
|
770 |
-
return;
|
771 |
-
}
|
772 |
-
const filteredTools = filterTools();
|
773 |
-
toolsContainer.innerHTML = ''; // Clear previous content
|
774 |
-
|
775 |
-
if (filteredTools.length === 0 && currentSearchTerm === '' && currentCategory === 'all') {
|
776 |
-
// Show specific message if no tools loaded at all
|
777 |
-
showError("לא נטענו כלים. בדוק את קובץ tools.json או נסה לרענן.");
|
778 |
-
} else if (filteredTools.length === 0) {
|
779 |
-
toolsContainer.innerHTML = '<p class="text-center text-gray-500 col-span-full">לא נמצאו כלים התואמים את החיפוש, הסינון והמיון.</p>';
|
780 |
-
} else {
|
781 |
-
filteredTools.forEach(tool => {
|
782 |
-
const toolCard = document.createElement('div');
|
783 |
-
toolCard.className = `relative tool-card bg-white rounded-lg shadow-sm border border-gray-100 p-6 transition duration-300 ${tool.isFeatured ? 'ring-2 ring-blue-500' : ''}`;
|
784 |
-
|
785 |
-
// הכנת הטקסט להקראה - שילוב של שם הכלי והתיאור שלו
|
786 |
-
const speakableText = `${tool.name}. ${tool.description}`;
|
787 |
-
// `${tool.name}`;
|
788 |
-
//
|
789 |
-
|
790 |
-
toolCard.innerHTML = `
|
791 |
-
<div class="flex items-center justify-between mb-4">
|
792 |
-
<div class="flex items-center gap-4">
|
793 |
-
<!-- לוגו הכלי -->
|
794 |
-
<img src="${tool.logo}" alt="${tool.name} Logo" class="w-14 h-14 object-contain rounded bg-white p-1 shadow-sm">
|
795 |
-
|
796 |
-
<div>
|
797 |
-
<!-- שם הכלי, תגית 'חדש!' וכפתור רמקול -->
|
798 |
-
<div class="flex items-center gap-2">
|
799 |
-
<h3 class="text-xl font-semibold">${tool.name}</h3>
|
800 |
-
${tool.isNew ? `<span class="text-xs bg-green-500 text-white px-2 py-1 rounded-full animate-pulse">חדש!</span>` : ''}
|
801 |
-
<button title="הקרא תיאור" onclick="event.stopPropagation(); speakText('${tool.description.replace(/'/g, "\\'")}')" class="text-blue-600 hover:text-blue-800 focus:outline-none">
|
802 |
-
<i class="fas fa-volume-up"></i>
|
803 |
-
</button>
|
804 |
-
</div>
|
805 |
-
<!-- תגית קטגוריה -->
|
806 |
-
<span class="text-xs px-2 py-1 rounded-full ${getCategoryBadgeColor(tool.category)}">
|
807 |
-
${getCategoryName(tool.category)}
|
808 |
-
</span>
|
809 |
-
</div>
|
810 |
-
</div>
|
811 |
-
|
812 |
-
<!-- אייקון הכלי -->
|
813 |
-
<i class="${tool.icon} text-gray-500 text-2xl"></i>
|
814 |
-
</div>
|
815 |
-
|
816 |
-
<!-- תיאור -->
|
817 |
-
<p class="text-gray-700 mb-4 text-base leading-relaxed min-h-[60px]">${tool.description}</p>
|
818 |
-
|
819 |
-
<!-- דירוג + יוטיוב -->
|
820 |
-
<div class="flex justify-between items-center mb-4">
|
821 |
-
<div class="flex items-center gap-3">
|
822 |
-
${renderRatingStars(tool.rating)}
|
823 |
-
${tool.video ? `
|
824 |
-
<button title="צפה בהדרכה" onclick="openVideoModal('${tool.video}')" class="text-red-500 hover:text-red-600 transition text-xl">
|
825 |
-
<i class="fab fa-youtube"></i>
|
826 |
-
</button>` : ''
|
827 |
-
}
|
828 |
-
</div>
|
829 |
-
</div>
|
830 |
-
|
831 |
-
<!-- כפתור גישה לכלי -->
|
832 |
-
<a href="${tool.url}" target="_blank" rel="noopener noreferrer"
|
833 |
-
class="inline-block w-full text-center px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition ${tool.url === '#' ? 'opacity-50 cursor-not-allowed' : ''}">
|
834 |
-
<i class="fas fa-external-link-alt ml-2"></i> ${tool.url !== '#' ? 'גישה לכלי' : 'אין קישור'}
|
835 |
-
</a>
|
836 |
-
`;
|
837 |
-
|
838 |
-
toolsContainer.appendChild(toolCard);
|
839 |
-
});
|
840 |
-
// אנימציה של הופעה חלקה
|
841 |
-
requestAnimationFrame(() => {
|
842 |
-
toolCard.classList.add('visible');
|
843 |
-
});
|
844 |
-
|
845 |
-
// הוספת סגנון CSS לכפתור הקראה פעיל
|
846 |
-
if (!document.getElementById('speakButtonStyle')) {
|
847 |
-
const style = document.createElement('style');
|
848 |
-
style.id = 'speakButtonStyle';
|
849 |
-
style.innerHTML = `
|
850 |
-
.speak-button.speaking { color: #4f46e5; animation: pulse 1.5s infinite; }
|
851 |
-
@keyframes pulse {
|
852 |
-
0% { transform: scale(1); }
|
853 |
-
50% { transform: scale(1.2); }
|
854 |
-
100% { transform: scale(1); }
|
855 |
-
}
|
856 |
-
`;
|
857 |
-
document.head.appendChild(style);
|
858 |
-
}
|
859 |
-
}
|
860 |
-
}
|
861 |
-
|
862 |
-
// פונקציה נוספת שמוחקת את ההקראה בעת עזיבת העמוד
|
863 |
-
function cleanupSpeech() {
|
864 |
-
if (speechSynthesis) {
|
865 |
-
speechSynthesis.cancel();
|
866 |
-
}
|
867 |
-
}
|
868 |
-
|
869 |
-
// הוספת אירוע לניקוי ההקראה בעת עזיבת העמוד
|
870 |
-
window.addEventListener('beforeunload', cleanupSpeech);
|
871 |
-
|
872 |
-
// עדכון אירוע הקלקה על כפתור הקראה - להוסיף מחלקת CSS ולשנות אייקון
|
873 |
-
document.addEventListener('click', function(e) {
|
874 |
-
if (e.target.closest('.speak-button')) {
|
875 |
-
const button = e.target.closest('.speak-button');
|
876 |
-
|
877 |
-
// החלפת האייקון והוספת מחלקת CSS מהבהבת
|
878 |
-
if (speechSynthesis.speaking && currentUtterance) {
|
879 |
-
// אם יש הקראה פעילה, נעדכן את כל הכפתורים
|
880 |
-
document.querySelectorAll('.speak-button').forEach(btn => {
|
881 |
-
btn.innerHTML = '<i class="fas fa-volume-up"></i>';
|
882 |
-
btn.classList.remove('speaking');
|
883 |
-
});
|
884 |
-
|
885 |
-
// ואז נעדכן את הכפתור הנוכחי אם ההקראה ממשיכה
|
886 |
-
if (!button.classList.contains('speaking')) {
|
887 |
-
button.innerHTML = '<i class="fas fa-volume-mute"></i>';
|
888 |
-
button.classList.add('speaking');
|
889 |
-
}
|
890 |
-
} else {
|
891 |
-
button.innerHTML = '<i class="fas fa-volume-up"></i>';
|
892 |
-
button.classList.remove('speaking');
|
893 |
-
}
|
894 |
-
}
|
895 |
-
});
|
896 |
-
|
897 |
-
|
898 |
-
function renderVideos() {
|
899 |
-
// ... (renderVideos logic remains the same as before) ...
|
900 |
-
if (!videosContainer || !toolsData || !Array.isArray(toolsData.videos)) {
|
901 |
-
console.error("Cannot render videos: Missing container or invalid data.");
|
902 |
-
if (videosContainer) videosContainer.innerHTML = '<p class="text-center text-red-500 col-span-full">שגיאה בהצגת הסרטונים.</p>';
|
903 |
-
return;
|
904 |
-
}
|
905 |
-
videosContainer.innerHTML = '';
|
906 |
-
if (toolsData.videos.length === 0) {
|
907 |
-
videosContainer.innerHTML = '<p class="text-center text-gray-500 col-span-full">אין סרטונים להצגה.</p>';
|
908 |
-
} else {
|
909 |
-
toolsData.videos.forEach(video => {
|
910 |
-
const videoId = getYouTubeID(video.url);
|
911 |
-
const embedUrl = videoId ? `https://www.youtube.com/embed/${videoId}` : '#';
|
912 |
-
const videoCard = document.createElement('div');
|
913 |
-
videoCard.className = 'bg-white rounded-lg shadow-sm border border-gray-100 overflow-hidden';
|
914 |
-
videoCard.innerHTML = `
|
915 |
-
<div class="relative pt-[56.25%] ${!videoId ? 'bg-gray-200 flex items-center justify-center' : ''}">
|
916 |
-
${videoId ? `<iframe class="absolute top-0 left-0 w-full h-full" src="${embedUrl}" frameborder="0" title="${video.title}" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>` : `<p class="text-gray-500 text-sm p-4">${video.url === '#' ? 'אין קישור וידאו' : 'קישור וידאו לא תקין'}</p>`}
|
917 |
-
</div>
|
918 |
-
<div class="p-4">
|
919 |
-
<h3 class="text-lg font-semibold mb-2">${video.title}</h3>
|
920 |
-
<p class="text-gray-600 text-sm mb-3 min-h-[40px]">${video.description}</p>
|
921 |
-
<p class="text-gray-500 text-xs">${formatDate(video.date)}</p>
|
922 |
-
</div>`;
|
923 |
-
videosContainer.appendChild(videoCard);
|
924 |
-
});
|
925 |
-
}
|
926 |
-
}
|
927 |
-
|
928 |
-
// --- Helper Functions (Filtering, Stats, Stars, Category, Date - Unchanged) ---
|
929 |
-
function filterTools() {
|
930 |
-
if (!toolsData || !Array.isArray(toolsData.tools)) return [];
|
931 |
-
|
932 |
-
let filtered = toolsData.tools;
|
933 |
-
|
934 |
-
if (filteredStatView === 'topRated') {
|
935 |
-
filtered = filtered.filter(tool => tool.rating === 5);
|
936 |
-
} else if (filteredStatView === 'newTools') {
|
937 |
-
filtered = filtered.filter(tool => tool.isNew);
|
938 |
-
}
|
939 |
-
|
940 |
-
return filtered.filter(tool => {
|
941 |
-
const searchTermLower = currentSearchTerm.toLowerCase();
|
942 |
-
const nameMatch = tool.name.toLowerCase().includes(searchTermLower);
|
943 |
-
const descMatch = tool.description.toLowerCase().includes(searchTermLower);
|
944 |
-
const categoryNameMatch = getCategoryName(tool.category).toLowerCase().includes(searchTermLower);
|
945 |
-
const matchesSearch = nameMatch || descMatch || categoryNameMatch;
|
946 |
-
const matchesCategoryFilter = currentCategory === 'all' || tool.category === currentCategory;
|
947 |
-
return matchesCategoryFilter && matchesSearch;
|
948 |
-
});
|
949 |
-
}
|
950 |
-
|
951 |
-
function updateStats() { /* ... (unchanged) ... */
|
952 |
-
const toolsCount = (toolsData && Array.isArray(toolsData.tools)) ? toolsData.tools.length : 0;
|
953 |
-
totalToolsElement.textContent = toolsCount;
|
954 |
-
const topRatedCount = toolsCount > 0 ? toolsData.tools.filter(tool => tool.rating >= 5).length : 0;
|
955 |
-
topRatedElement.textContent = topRatedCount;
|
956 |
-
const newToolsCount = toolsCount > 0 ? toolsData.tools.filter(tool => tool.isNew).length : 0;
|
957 |
-
newToolsElement.textContent = newToolsCount;
|
958 |
-
const categories = toolsCount > 0 ? new Set(toolsData.tools.map(tool => tool.category)) : new Set();
|
959 |
-
totalCategoriesElement.textContent = categories.size;
|
960 |
-
}
|
961 |
-
|
962 |
-
function renderRatingStars(rating) { /* ... (unchanged) ... */
|
963 |
-
let stars = '';
|
964 |
-
const filledStars = Math.max(0, Math.min(5, Math.round(rating)));
|
965 |
-
for (let i = 1; i <= 5; i++) {
|
966 |
-
stars += `<i class="${i <= filledStars ? 'fas fa-star text-yellow-400' : 'far fa-star text-gray-300'} ml-1"></i>`;
|
967 |
-
}
|
968 |
-
return stars;
|
969 |
-
}
|
970 |
-
function getCategoryName(category) { /* ... (unchanged) ... */
|
971 |
-
const categories = { 'ai-agents': 'סוכן AI','productivity': 'פרודוקטיביות', 'writing': 'כתיבה', 'design': 'עיצוב', 'coding': 'תכנות', 'video': 'וידאו', 'image': 'תמונה', 'education': 'חינוך', 'data': 'נתונים', 'search': 'חיפוש', 'builder': 'בנייה', 'customer-support': 'תמיכה', 'automation': 'אוטומציה', 'hosting': 'אחסון', 'agents': 'סוכנים', 'directory': 'אינדקס', 'utility': 'כלי עזר', 'platform': 'פלטפורמה', 'media': 'מדיה', 'presentation': 'מצגות', 'audio': 'שמע', 'infrastructure': 'תשתיות', 'nlp': 'עיבוד שפה', 'accessibility': 'נגישות', 'general': 'כללי' };
|
972 |
-
return categories[category] || category || 'כללי';
|
973 |
-
}
|
974 |
-
function getCategoryColor(category) { /* ... (unchanged) ... */
|
975 |
-
const colors = { 'productivity': 'bg-blue-600', 'writing': 'bg-purple-600', 'design': 'bg-pink-600', 'coding': 'bg-green-600', 'video': 'bg-red-600', 'image': 'bg-yellow-600', 'education': 'bg-indigo-600', 'data': 'bg-cyan-600', 'search': 'bg-teal-600', 'builder': 'bg-orange-600', 'customer-support': 'bg-lime-600', 'automation': 'bg-sky-600', 'hosting': 'bg-amber-600', 'agents': 'bg-violet-600', 'directory': 'bg-fuchsia-600', 'utility': 'bg-rose-600', 'platform': 'bg-emerald-600', 'media': 'bg-stone-600', 'presentation': 'bg-red-500', 'audio': 'bg-blue-500', 'infrastructure': 'bg-gray-700', 'nlp': 'bg-purple-500', 'accessibility': 'bg-green-500', 'general': 'bg-gray-600' };
|
976 |
-
return colors[category] || 'bg-gray-600';
|
977 |
-
}
|
978 |
-
function getCategoryBadgeColor(category) { /* ... (unchanged) ... */
|
979 |
-
const colors = { 'productivity': 'bg-blue-100 text-blue-800', 'writing': 'bg-purple-100 text-purple-800', 'design': 'bg-pink-100 text-pink-800', 'coding': 'bg-green-100 text-green-800', 'video': 'bg-red-100 text-red-800', 'image': 'bg-yellow-100 text-yellow-800', 'education': 'bg-indigo-100 text-indigo-800', 'data': 'bg-cyan-100 text-cyan-800', 'search': 'bg-teal-100 text-teal-800', 'builder': 'bg-orange-100 text-orange-800', 'customer-support': 'bg-lime-100 text-lime-800', 'automation': 'bg-sky-100 text-sky-800', 'hosting': 'bg-amber-100 text-amber-800', 'agents': 'bg-violet-100 text-violet-800', 'directory': 'bg-fuchsia-100 text-fuchsia-800', 'utility': 'bg-rose-100 text-rose-800', 'platform': 'bg-emerald-100 text-emerald-800', 'media': 'bg-stone-100 text-stone-800', 'presentation': 'bg-red-100 text-red-800', 'audio': 'bg-blue-100 text-blue-800', 'infrastructure': 'bg-gray-200 text-gray-800', 'nlp': 'bg-purple-100 text-purple-800', 'accessibility': 'bg-green-100 text-green-800', 'general': 'bg-gray-100 text-gray-800' };
|
980 |
-
return colors[category] || 'bg-gray-100 text-gray-800';
|
981 |
-
}
|
982 |
-
function getYouTubeID(url) { /* ... (unchanged) ... */
|
983 |
-
if (!url || url === '#') return '';
|
984 |
-
const match = url.match(/(?:youtu\.be\/|youtube\.com\/(?:watch\?v=|embed\/|v\/|shorts\/))([^?&\/\s]+)/);
|
985 |
-
return match ? match[1] : '';
|
986 |
-
}
|
987 |
-
function formatDate(dateString) { /* ... (unchanged, includes fallback parsing) ... */
|
988 |
-
if (!dateString) return 'תאריך לא זמין';
|
989 |
-
try {
|
990 |
-
const date = new Date(dateString);
|
991 |
-
if (isNaN(date.getTime())) {
|
992 |
-
console.warn("Could not parse date directly:", dateString);
|
993 |
-
const parts = dateString.match(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/);
|
994 |
-
if (parts) {
|
995 |
-
const isoDate = new Date(`${parts[3]}-${parts[2].padStart(2, '0')}-${parts[1].padStart(2, '0')}T00:00:00Z`);
|
996 |
-
if (!isNaN(isoDate.getTime())) return isoDate.toLocaleDateString('he-IL', { year: 'numeric', month: 'long', day: 'numeric' });
|
997 |
-
} return 'תאריך לא תקין';
|
998 |
-
}
|
999 |
-
return date.toLocaleDateString('he-IL', { year: 'numeric', month: 'long', day: 'numeric' });
|
1000 |
-
} catch (e) { console.error("Error formatting date:", dateString, e); return 'תאריך לא תקין'; }
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
// --- Event Listeners Setup ---
|
1004 |
-
function setupEventListeners() {
|
1005 |
-
// Search input
|
1006 |
-
searchInput.addEventListener('input', (e) => {
|
1007 |
-
currentSearchTerm = e.target.value;
|
1008 |
-
localStorage.setItem('searchTerm', currentSearchTerm); // שמור בזיכרון הדפדפן
|
1009 |
-
renderTools();
|
1010 |
-
});
|
1011 |
-
|
1012 |
-
|
1013 |
-
// Filter buttons
|
1014 |
-
filterButtons.forEach(button => {
|
1015 |
-
button.addEventListener('click', () => {
|
1016 |
-
filterButtons.forEach(btn => btn.classList.remove('active'));
|
1017 |
-
button.classList.add('active');
|
1018 |
-
currentCategory = button.dataset.category;
|
1019 |
-
renderTools();
|
1020 |
-
});
|
1021 |
-
});
|
1022 |
-
|
1023 |
-
// Mobile menu toggle
|
1024 |
-
mobileMenuButton.addEventListener('click', () => {
|
1025 |
-
mobileMenu.classList.toggle('open');
|
1026 |
-
});
|
1027 |
-
|
1028 |
-
// Uncomment if using admin buttons
|
1029 |
-
const editJsonBtn = document.getElementById('editJsonBtn');
|
1030 |
-
const editJsonBtnMobile = document.getElementById('editJsonBtnMobile');
|
1031 |
-
document.getElementById('editJsonBtnFooter')?.addEventListener('click', openEditorHandler);
|
1032 |
-
|
1033 |
-
if (editJsonBtn) editJsonBtn.addEventListener('click', openEditorHandler);
|
1034 |
-
if (editJsonBtnMobile) editJsonBtnMobile.addEventListener('click', openEditorHandler);
|
1035 |
-
|
1036 |
-
closeModalBtn.addEventListener('click', () => jsonEditorModal.classList.add('hidden'));
|
1037 |
-
cancelEditBtn.addEventListener('click', () => jsonEditorModal.classList.add('hidden'));
|
1038 |
-
|
1039 |
-
// JSON Editor Save Button -> Saves ONLY to localStorage for the current session
|
1040 |
-
saveJsonBtn.addEventListener('click', () => {
|
1041 |
-
try {
|
1042 |
-
const rawData = JSON.parse(jsonEditor.value);
|
1043 |
-
if (!Array.isArray(rawData)) throw new Error("Data must be an array.");
|
1044 |
-
if (showToolsBtn.classList.contains('bg-blue-600')) {
|
1045 |
-
// Update in-memory data and sort
|
1046 |
-
toolsData.tools = rawData.map(tool => ({ /* add defaults */ ...tool, rating: tool.rating ?? 0, isNew: tool.isNew ?? false, category: tool.category ?? 'general', icon: tool.icon || 'fas fa-tools', url: tool.url || '#', description: tool.description || 'אין תיאור זמין.', name: tool.name || 'שם לא ידוע' }));
|
1047 |
-
sortTools(currentSort);
|
1048 |
-
} else {
|
1049 |
-
toolsData.videos = rawData.map(video => ({ /* add defaults */ ...video, url: video.url || '#', title: video.title || 'כותרת חסרה', description: video.description || 'אין תיאור זמין.', date: video.date ?? new Date().toISOString() }));
|
1050 |
-
}
|
1051 |
-
// Save the edited data to localStorage (will be lost on next full load)
|
1052 |
-
saveData();
|
1053 |
-
// Re-render the UI with the edited data for the current session
|
1054 |
-
renderTools();
|
1055 |
-
renderVideos();
|
1056 |
-
updateStats();
|
1057 |
-
jsonEditorModal.classList.add('hidden');
|
1058 |
-
alert("הנתונים נשמרו זמנית (באחסון המקומי). הם יתעדכנו מחדש מהשרת בטעינה הבאה של הדף.");
|
1059 |
-
} catch (e) { alert('JSON לא תקין או שגיאה בשמירה:\n' + e.message); console.error("JSON Save Error:", e); }
|
1060 |
-
});
|
1061 |
-
|
1062 |
-
showToolsBtn.addEventListener('click', () => { /* ... (unchanged editor tab logic) ... */
|
1063 |
-
showToolsBtn.classList.add('bg-blue-600', 'text-white'); showToolsBtn.classList.remove('bg-gray-200', 'text-gray-700');
|
1064 |
-
showVideosBtn.classList.add('bg-gray-200', 'text-gray-700'); showVideosBtn.classList.remove('bg-blue-600', 'text-white');
|
1065 |
-
jsonEditor.value = JSON.stringify(toolsData.tools, null, 2); // Show current in-memory tools data
|
1066 |
-
});
|
1067 |
-
showVideosBtn.addEventListener('click', () => { /* ... (unchanged editor tab logic) ... */
|
1068 |
-
showVideosBtn.classList.add('bg-blue-600', 'text-white'); showVideosBtn.classList.remove('bg-gray-200', 'text-gray-700');
|
1069 |
-
showToolsBtn.classList.add('bg-gray-200', 'text-gray-700'); showToolsBtn.classList.remove('bg-blue-600', 'text-white');
|
1070 |
-
jsonEditor.value = JSON.stringify(toolsData.videos, null, 2); // Show current in-memory videos data
|
1071 |
-
});
|
1072 |
-
|
1073 |
-
// Sorting stat boxes (Unchanged)
|
1074 |
-
if (topRatedStatBox) {
|
1075 |
-
topRatedStatBox.addEventListener('click', () => {
|
1076 |
-
sortTools('rating');
|
1077 |
-
renderTools();
|
1078 |
-
scrollToTools(); // גלילה חלקה לתחילת רשימת הכלים
|
1079 |
-
});
|
1080 |
-
}
|
1081 |
-
|
1082 |
-
if (newToolsStatBox) {
|
1083 |
-
newToolsStatBox.addEventListener('click', () => {
|
1084 |
-
sortTools('newest');
|
1085 |
-
renderTools();
|
1086 |
-
scrollToTools(); // גלילה חלקה לתחילת רשימת הכלים
|
1087 |
-
});
|
1088 |
-
}
|
1089 |
-
|
1090 |
-
|
1091 |
-
// Refresh buttons - Now primarily resets filters/sort/search and re-renders current data
|
1092 |
-
// It *could* re-fetch, but init() already does that on load.
|
1093 |
-
// Let's make it just reset the view state.
|
1094 |
-
const resetViewHandler = () => {
|
1095 |
-
console.log("Resetting view state (filters, sort, search)...");
|
1096 |
-
// Reset filters and search
|
1097 |
-
searchInput.value = '';
|
1098 |
-
currentSearchTerm = '';
|
1099 |
-
filterButtons.forEach(btn => btn.classList.remove('active'));
|
1100 |
-
const allFilterBtn = document.querySelector('.filter-btn[data-category="all"]');
|
1101 |
-
if (allFilterBtn) allFilterBtn.classList.add('active');
|
1102 |
-
currentCategory = 'all';
|
1103 |
-
|
1104 |
-
// Reset sort to newest and re-render
|
1105 |
-
sortTools('newest');
|
1106 |
-
renderTools();
|
1107 |
-
// No need to re-render videos unless their source changes, which this button doesn't do
|
1108 |
-
// No need to update stats as the underlying data hasn't changed
|
1109 |
-
alert("התצוגה אופסה (פילטרים, מיון וחיפוש נוקו).");
|
1110 |
-
};
|
1111 |
-
|
1112 |
-
refreshBtn.addEventListener('click', resetViewHandler);
|
1113 |
-
refreshBtnMobile.addEventListener('click', resetViewHandler);
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
// --- Initialize the app ---
|
1117 |
-
document.addEventListener('DOMContentLoaded', init);
|
1118 |
-
|
1119 |
-
// JSON Editor Modal Logic (If admin buttons are enabled)
|
1120 |
-
const openEditorHandler = () => {
|
1121 |
-
document.getElementById('suggestToolModal').classList.remove('hidden');
|
1122 |
-
};
|
1123 |
-
|
1124 |
-
const closeSuggestModal = () => {
|
1125 |
-
document.getElementById('suggestToolModal').classList.add('hidden');
|
1126 |
-
};
|
1127 |
-
|
1128 |
-
document.getElementById('suggestToolForm').addEventListener('submit', async (e) => {
|
1129 |
-
e.preventDefault();
|
1130 |
-
const form = e.target;
|
1131 |
-
const rawPhone = form.userPhone.value;
|
1132 |
-
const cleanedPhone = rawPhone.replace(/\D/g, ''); // מסיר כל תו שאינו ספרה
|
1133 |
-
// alert(cleanedPhone)
|
1134 |
-
const data = {
|
1135 |
-
name: form.name.value,
|
1136 |
-
url: form.url.value,
|
1137 |
-
description: form.description.value,
|
1138 |
-
userName: form.userName.value,
|
1139 |
-
userPhone: cleanedPhone,
|
1140 |
-
};
|
1141 |
-
|
1142 |
-
try {
|
1143 |
-
await fetch("https://hook.eu2.make.com/lgo6nh36dk804dq1msfmwxo34nzf4o3y", {
|
1144 |
-
method: "POST",
|
1145 |
-
headers: {
|
1146 |
-
"Content-Type": "application/json"
|
1147 |
-
},
|
1148 |
-
body: JSON.stringify(data)
|
1149 |
-
});
|
1150 |
-
|
1151 |
-
alert("הכלי נשלח בהצלחה!");
|
1152 |
-
closeSuggestModal();
|
1153 |
-
form.reset();
|
1154 |
-
} catch (err) {
|
1155 |
-
alert("שגיאה בשליחה 😢");
|
1156 |
-
console.error(err);
|
1157 |
-
}
|
1158 |
-
});
|
1159 |
-
function openVideoModal(url) {
|
1160 |
-
const modal = document.getElementById('videoModal');
|
1161 |
-
const iframe = document.getElementById('videoIframe');
|
1162 |
-
iframe.src = url;
|
1163 |
-
modal.classList.remove('hidden');
|
1164 |
-
}
|
1165 |
-
|
1166 |
-
function closeVideoModal() {
|
1167 |
-
const modal = document.getElementById('videoModal');
|
1168 |
-
const iframe = document.getElementById('videoIframe');
|
1169 |
-
iframe.src = "";
|
1170 |
-
modal.classList.add('hidden');
|
1171 |
-
};
|
1172 |
-
fetch('tools.json')
|
1173 |
-
.then(res => res.json())
|
1174 |
-
.then(tools => {
|
1175 |
-
const count = tools.length;
|
1176 |
-
document.getElementById('toolsCount').textContent = `${count} כלים זמינים`;
|
1177 |
-
})
|
1178 |
-
.catch(err => {
|
1179 |
-
console.error("שגיאה בטעינת כמות הכלים:", err);
|
1180 |
-
document.getElementById('toolsCount').textContent = 'טעינה נכשלה';
|
1181 |
-
});
|
1182 |
-
function showNewToolBanner() {
|
1183 |
-
const tools = toolsData.tools;
|
1184 |
-
const lastSeenToolDate = localStorage.getItem('lastSeenToolDate');
|
1185 |
-
const newTools = tools.filter(tool => tool.isNew);
|
1186 |
-
if (newTools.length === 0) return;
|
1187 |
-
|
1188 |
-
const latestTool = newTools.reduce((latest, tool) => {
|
1189 |
-
return new Date(tool.dateAdded) > new Date(latest.dateAdded) ? tool : latest;
|
1190 |
-
}, newTools[0]);
|
1191 |
-
|
1192 |
-
if (!lastSeenToolDate || new Date(latestTool.dateAdded) > new Date(lastSeenToolDate)) {
|
1193 |
-
const banner = document.getElementById('newToolBanner');
|
1194 |
-
const toolNameSpan = document.getElementById('newToolName');
|
1195 |
-
const closeBtn = document.getElementById('closeBanner');
|
1196 |
-
|
1197 |
-
toolNameSpan.textContent = latestTool.name;
|
1198 |
-
banner.classList.remove('hidden');
|
1199 |
-
|
1200 |
-
closeBtn.addEventListener('click', () => {
|
1201 |
-
banner.classList.add('hidden');
|
1202 |
-
localStorage.setItem('lastSeenToolDate', latestTool.dateAdded);
|
1203 |
-
});
|
1204 |
-
}
|
1205 |
-
}
|
1206 |
-
|
1207 |
-
</script>
|
1208 |
-
<!-- /* --------------------------------- */
|
1209 |
-
/* ------- END OF JAVASCRIPT ------- */
|
1210 |
-
/* --------------------------------- */ -->
|
1211 |
-
</body>
|
1212 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index_with_tts.html
ADDED
@@ -0,0 +1,1864 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--
|
2 |
+
https://thewitcher-sagi-ai-tools.static.hf.space/index.html
|
3 |
+
https://huggingface.co/spaces/theWitcher/sagi-ai-tools
|
4 |
+
|
5 |
+
https://chatgpt.com/c/67efa5ae-ab80-8005-a7d4-de3ced6ccec4
|
6 |
+
|
7 |
+
https://bit.ly/a-tools
|
8 |
+
|
9 |
+
-->
|
10 |
+
|
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 |
+
<title>ארגז הכלים שלי לבינה מלאכותית</title>
|
17 |
+
<link
|
18 |
+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
|
19 |
+
rel="stylesheet"
|
20 |
+
/>
|
21 |
+
|
22 |
+
<style>
|
23 |
+
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');
|
24 |
+
|
25 |
+
body {
|
26 |
+
font-family: 'Arimo', sans-serif;
|
27 |
+
background-color: #f9fafb;
|
28 |
+
}
|
29 |
+
|
30 |
+
.tool-card:hover {
|
31 |
+
transform: translateY(-5px);
|
32 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
|
33 |
+
0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
34 |
+
}
|
35 |
+
|
36 |
+
.category-filter .active {
|
37 |
+
background-color: #3b82f6;
|
38 |
+
color: white;
|
39 |
+
}
|
40 |
+
|
41 |
+
.gradient-text {
|
42 |
+
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
|
43 |
+
-webkit-background-clip: text;
|
44 |
+
background-clip: text;
|
45 |
+
color: transparent;
|
46 |
+
}
|
47 |
+
|
48 |
+
/* RTL specific styles */
|
49 |
+
[dir='rtl'] .rotate-180 {
|
50 |
+
transform: rotate(180deg);
|
51 |
+
}
|
52 |
+
|
53 |
+
/* Mobile menu styles */
|
54 |
+
.mobile-menu {
|
55 |
+
max-height: 0;
|
56 |
+
overflow: hidden;
|
57 |
+
transition: max-height 0.3s ease-out;
|
58 |
+
}
|
59 |
+
|
60 |
+
.mobile-menu.open {
|
61 |
+
max-height: 500px;
|
62 |
+
}
|
63 |
+
|
64 |
+
/* Admin badge */
|
65 |
+
.admin-badge {
|
66 |
+
position: absolute;
|
67 |
+
top: -8px;
|
68 |
+
right: -8px;
|
69 |
+
background-color: #ef4444;
|
70 |
+
color: white;
|
71 |
+
border-radius: 9999px;
|
72 |
+
width: 20px;
|
73 |
+
height: 20px;
|
74 |
+
display: flex;
|
75 |
+
align-items: center;
|
76 |
+
justify-content: center;
|
77 |
+
font-size: 10px;
|
78 |
+
}
|
79 |
+
|
80 |
+
/* Futuristic profile image */
|
81 |
+
.profile-container {
|
82 |
+
position: relative;
|
83 |
+
width: 200px;
|
84 |
+
height: 200px;
|
85 |
+
margin: 0 auto;
|
86 |
+
}
|
87 |
+
|
88 |
+
.profile-image {
|
89 |
+
width: 100%;
|
90 |
+
height: 100%;
|
91 |
+
border-radius: 50%;
|
92 |
+
object-fit: cover;
|
93 |
+
border: 4px solid #3b82f6;
|
94 |
+
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
|
95 |
+
position: relative;
|
96 |
+
z-index: 2;
|
97 |
+
}
|
98 |
+
|
99 |
+
.tech-circle {
|
100 |
+
position: absolute;
|
101 |
+
border-radius: 50%;
|
102 |
+
border: 2px solid rgba(59, 130, 246, 0.7);
|
103 |
+
animation: rotate infinite linear;
|
104 |
+
}
|
105 |
+
|
106 |
+
.tech-circle-1 {
|
107 |
+
width: 220px;
|
108 |
+
height: 220px;
|
109 |
+
top: -10px;
|
110 |
+
left: -10px;
|
111 |
+
animation-duration: 15s;
|
112 |
+
border-style: dashed;
|
113 |
+
}
|
114 |
+
|
115 |
+
.tech-circle-2 {
|
116 |
+
width: 240px;
|
117 |
+
height: 240px;
|
118 |
+
top: -20px;
|
119 |
+
left: -20px;
|
120 |
+
animation-duration: 20s;
|
121 |
+
animation-direction: reverse;
|
122 |
+
}
|
123 |
+
|
124 |
+
.tech-circle-3 {
|
125 |
+
width: 260px;
|
126 |
+
height: 260px;
|
127 |
+
top: -30px;
|
128 |
+
left: -30px;
|
129 |
+
animation-duration: 25s;
|
130 |
+
border-style: dotted;
|
131 |
+
}
|
132 |
+
|
133 |
+
@keyframes rotate {
|
134 |
+
from {
|
135 |
+
transform: rotate(0deg);
|
136 |
+
}
|
137 |
+
to {
|
138 |
+
transform: rotate(360deg);
|
139 |
+
}
|
140 |
+
}
|
141 |
+
|
142 |
+
.tech-dots {
|
143 |
+
position: absolute;
|
144 |
+
width: 100%;
|
145 |
+
height: 100%;
|
146 |
+
border-radius: 50%;
|
147 |
+
z-index: 1;
|
148 |
+
}
|
149 |
+
|
150 |
+
.tech-dot {
|
151 |
+
position: absolute;
|
152 |
+
width: 8px;
|
153 |
+
height: 8px;
|
154 |
+
background-color: #8b5cf6;
|
155 |
+
border-radius: 50%;
|
156 |
+
transform: translate(-50%, -50%);
|
157 |
+
}
|
158 |
+
|
159 |
+
/* Futuristic AI elements */
|
160 |
+
.ai-particle {
|
161 |
+
position: absolute;
|
162 |
+
background: linear-gradient(135deg, #3b82f6, #8b5cf6);
|
163 |
+
border-radius: 50%;
|
164 |
+
opacity: 0.6;
|
165 |
+
filter: blur(10px);
|
166 |
+
z-index: 0;
|
167 |
+
}
|
168 |
+
|
169 |
+
.ai-circuit {
|
170 |
+
position: absolute;
|
171 |
+
width: 100%;
|
172 |
+
height: 100%;
|
173 |
+
background-image: radial-gradient(
|
174 |
+
circle at center,
|
175 |
+
transparent 0%,
|
176 |
+
#f9fafb 100%
|
177 |
+
),
|
178 |
+
linear-gradient(
|
179 |
+
90deg,
|
180 |
+
transparent 49%,
|
181 |
+
rgba(59, 130, 246, 0.1) 50%,
|
182 |
+
transparent 51%
|
183 |
+
),
|
184 |
+
linear-gradient(
|
185 |
+
0deg,
|
186 |
+
transparent 49%,
|
187 |
+
rgba(59, 130, 246, 0.1) 50%,
|
188 |
+
transparent 51%
|
189 |
+
);
|
190 |
+
background-size: 20px 20px;
|
191 |
+
border-radius: 50%;
|
192 |
+
opacity: 0.3;
|
193 |
+
}
|
194 |
+
/* Added cursor style for clickable stats */
|
195 |
+
.clickable-stat:hover {
|
196 |
+
cursor: pointer;
|
197 |
+
background-color: #f3f4f6; /* Slightly lighter gray on hover */
|
198 |
+
}
|
199 |
+
</style>
|
200 |
+
<!-- Google tag (gtag.js) -->
|
201 |
+
<script
|
202 |
+
async
|
203 |
+
src="https://www.googletagmanager.com/gtag/js?id=G-JVF8N1DVSG"
|
204 |
+
></script>
|
205 |
+
<script>
|
206 |
+
window.dataLayer = window.dataLayer || [];
|
207 |
+
function gtag() {
|
208 |
+
dataLayer.push(arguments);
|
209 |
+
}
|
210 |
+
gtag('js', new Date());
|
211 |
+
|
212 |
+
gtag('config', 'G-JVF8N1DVSG');
|
213 |
+
</script>
|
214 |
+
<link href="favicon-32.png" rel="icon" sizes="32x32" type="image/png" />
|
215 |
+
<link href="manifest.json" rel="manifest" />
|
216 |
+
<meta content="yes" name="apple-mobile-web-app-capable" />
|
217 |
+
<meta content="AI Tools" name="apple-mobile-web-app-title" />
|
218 |
+
<link href="icon-192.png" rel="apple-touch-icon" />
|
219 |
+
<meta content="#3b82f6" name="theme-color" />
|
220 |
+
</head>
|
221 |
+
<body class="min-h-screen">
|
222 |
+
<div
|
223 |
+
id="newToolBanner"
|
224 |
+
class="hidden bg-green-100 text-green-800 text-center py-2 text-sm font-semibold"
|
225 |
+
>
|
226 |
+
🎉 התווסף כלי חדש: <span id="newToolName"></span> –
|
227 |
+
<a href="#toolsContainer" class="underline">צפו עכשיו</a>
|
228 |
+
<button id="closeBanner" class="ml-4 text-green-800 font-bold">×</button>
|
229 |
+
</div>
|
230 |
+
|
231 |
+
<!-- Header -->
|
232 |
+
<header
|
233 |
+
class="sticky top-0 z-50 backdrop-blur-md bg-white/80 shadow-md border-b border-gray-200"
|
234 |
+
>
|
235 |
+
<div class="container mx-auto px-4 py-4">
|
236 |
+
<div class="flex justify-between items-center">
|
237 |
+
<div class="flex items-center">
|
238 |
+
<!-- Mobile menu button -->
|
239 |
+
<button id="mobileMenuButton" class="md:hidden text-gray-600 mr-4">
|
240 |
+
<i class="fas fa-bars text-xl"></i>
|
241 |
+
</button>
|
242 |
+
|
243 |
+
<div>
|
244 |
+
<h1 class="text-2xl md:text-3xl font-bold gradient-text">
|
245 |
+
ארגז הכלים שלי ל-AI
|
246 |
+
</h1>
|
247 |
+
<p class="text-gray-600 text-sm md:text-base mt-1">
|
248 |
+
אוסף כלי הבינה המלאכותית המומלצים שלי
|
249 |
+
</p>
|
250 |
+
</div>
|
251 |
+
</div>
|
252 |
+
|
253 |
+
<div class="hidden md:flex items-center space-x-4 space-x-reverse">
|
254 |
+
<!-- /* --- Refresh Button - Still useful for resetting filters/sort --- */ -->
|
255 |
+
<button
|
256 |
+
id="refreshBtn"
|
257 |
+
class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300"
|
258 |
+
>
|
259 |
+
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
260 |
+
</button>
|
261 |
+
|
262 |
+
<!-- /* --- Admin Edit Button - Uncomment if needed --- */ -->
|
263 |
+
<button
|
264 |
+
id="editJsonBtn"
|
265 |
+
class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative"
|
266 |
+
>
|
267 |
+
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
268 |
+
<span class="admin-badge">N</span>
|
269 |
+
</button>
|
270 |
+
</div>
|
271 |
+
</div>
|
272 |
+
|
273 |
+
<!-- /* --- Mobile menu --- */ -->
|
274 |
+
<div id="mobileMenu" class="mobile-menu md:hidden mt-4">
|
275 |
+
<div class="flex flex-col space-y-2 py-2">
|
276 |
+
<button
|
277 |
+
id="refreshBtnMobile"
|
278 |
+
class="px-5 py-2 rounded-xl bg-gradient-to-l from-blue-600 to-indigo-500 text-white shadow-md hover:shadow-lg hover:from-blue-700 hover:to-indigo-600 transition-all duration-300"
|
279 |
+
>
|
280 |
+
<i class="fas fa-sync-alt ml-2"></i> אפס תצוגה
|
281 |
+
</button>
|
282 |
+
<!-- /* --- Admin Edit Button (Mobile) - Uncomment if needed --- */ -->
|
283 |
+
<button
|
284 |
+
id="editJsonBtn"
|
285 |
+
class="px-5 py-2 rounded-xl bg-gradient-to-l from-pink-500 to-purple-600 text-white shadow-md hover:shadow-lg hover:from-pink-600 hover:to-purple-700 transition-all duration-300 relative"
|
286 |
+
>
|
287 |
+
<i class="fas fa-edit ml-2"></i> הציעו כלי חדש
|
288 |
+
<span class="admin-badge">N</span>
|
289 |
+
</button>
|
290 |
+
</div>
|
291 |
+
</div>
|
292 |
+
</div>
|
293 |
+
</header>
|
294 |
+
|
295 |
+
<!-- /* --- Main Content --- */ -->
|
296 |
+
<main class="container mx-auto px-4 py-8">
|
297 |
+
<!-- /* --- About Me Section --- */ -->
|
298 |
+
<div
|
299 |
+
class="bg-white rounded-lg shadow-sm p-6 border border-gray-100 mb-8 relative overflow-hidden"
|
300 |
+
>
|
301 |
+
<!-- /* ... (content unchanged) ... */ -->
|
302 |
+
<div
|
303 |
+
class="ai-particle"
|
304 |
+
style="width: 100px; height: 100px; top: -30px; right: -30px"
|
305 |
+
></div>
|
306 |
+
<div
|
307 |
+
class="ai-particle"
|
308 |
+
style="width: 150px; height: 150px; bottom: -50px; left: -50px"
|
309 |
+
></div>
|
310 |
+
<div
|
311 |
+
class="ai-particle"
|
312 |
+
style="width: 80px; height: 80px; top: 50%; right: 20%"
|
313 |
+
></div>
|
314 |
+
|
315 |
+
<h2 class="text-2xl font-bold mb-6 text-gray-800 border-b pb-2">
|
316 |
+
קצת עליי
|
317 |
+
</h2>
|
318 |
+
<div class="flex flex-col md:flex-row gap-6">
|
319 |
+
<div class="md:w-1/3">
|
320 |
+
<div class="profile-container">
|
321 |
+
<div class="ai-circuit"></div>
|
322 |
+
<div class="tech-circle tech-circle-1"></div>
|
323 |
+
<div class="tech-circle tech-circle-2"></div>
|
324 |
+
<div class="tech-circle tech-circle-3"></div>
|
325 |
+
<div class="tech-dots">
|
326 |
+
<div class="tech-dot" style="top: 10%; left: 50%"></div>
|
327 |
+
<div class="tech-dot" style="top: 50%; left: 10%"></div>
|
328 |
+
<div class="tech-dot" style="top: 90%; left: 50%"></div>
|
329 |
+
<div class="tech-dot" style="top: 50%; left: 90%"></div>
|
330 |
+
<div class="tech-dot" style="top: 30%; left: 30%"></div>
|
331 |
+
<div class="tech-dot" style="top: 70%; left: 70%"></div>
|
332 |
+
<div class="tech-dot" style="top: 30%; left: 70%"></div>
|
333 |
+
<div class="tech-dot" style="top: 70%; left: 30%"></div>
|
334 |
+
</div>
|
335 |
+
<img
|
336 |
+
src="https://i.imgur.com/cnlxCuj.jpeg"
|
337 |
+
alt="שגיא בר און"
|
338 |
+
class="profile-image"
|
339 |
+
/>
|
340 |
+
</div>
|
341 |
+
</div>
|
342 |
+
<div class="md:w-2/3">
|
343 |
+
<h3 class="text-xl font-semibold mb-4">שגיא בר און</h3>
|
344 |
+
<p class="text-gray-700 mb-4">
|
345 |
+
אני חוקר ויועץ בתחום הבינה המלאכותית, מאסטר NLP, ובעל ניסיון של
|
346 |
+
למעלה מ-25 שנה בתעשיית ההייטק. בעל מומחיות רחבה בפיתוח תוכנה,
|
347 |
+
אוטומציה, ניהול פרויקטים ואסטרטגיה עסקית.
|
348 |
+
</p>
|
349 |
+
<p class="text-gray-700 mb-4">
|
350 |
+
מרצה אורח באוניברסיטת רייכמן וחבר בסגל הבוחנים של מה"ט - המכון
|
351 |
+
הממשלתי להכשרה בטכנולוגיה ובמדע - לבחינות מהנדסי תוכנה
|
352 |
+
באוניברסיטאות ובמכללות, וכן מנטור לAI במסגרת משרד החינוך.
|
353 |
+
</p>
|
354 |
+
<p class="text-gray-700 mb-4">
|
355 |
+
בעל תואר שני במנהל עסקים עם התמחות בבינה מלאכותית, תואר ראשון
|
356 |
+
(BSc) במדעי המחשב והנדסאי תוכנה. ההרצאות משלבות ידע עדכני, חשיבה
|
357 |
+
ביקורתית והתנסות חווייתית, מתוך מטרה להעצים אנשים ולאפשר להם
|
358 |
+
להשתמש בטכנולוגיה בחוכמה ובקלות.
|
359 |
+
</p>
|
360 |
+
<p class="text-gray-700">
|
361 |
+
שמתי לי למטרה להנגיש, להסביר ולחבר את הטכנולוגיה בצורה פשוטה
|
362 |
+
וברורה לכולם.
|
363 |
+
</p>
|
364 |
+
</div>
|
365 |
+
</div>
|
366 |
+
</div>
|
367 |
+
|
368 |
+
<!-- /* --- Search and Filters --- */ -->
|
369 |
+
<div class="mb-8">
|
370 |
+
<!-- /* ... (content unchanged) ... */ -->
|
371 |
+
<div
|
372 |
+
class="flex flex-col md:flex-row md:items-center md:justify-between gap-4"
|
373 |
+
>
|
374 |
+
<div class="relative w-full md:w-96">
|
375 |
+
<input
|
376 |
+
type="text"
|
377 |
+
id="searchInput"
|
378 |
+
placeholder="חפש כלים..."
|
379 |
+
class="w-full pr-10 pl-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"
|
380 |
+
/>
|
381 |
+
<i class="fas fa-search absolute right-3 top-3.5 text-gray-400"></i>
|
382 |
+
</div>
|
383 |
+
<div class="flex items-center space-x-2 space-x-reverse">
|
384 |
+
<span class="text-gray-600 hidden md:block">סנן לפי:</span>
|
385 |
+
<div class="category-filter flex flex-wrap gap-2">
|
386 |
+
<button
|
387 |
+
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"
|
388 |
+
data-category="all"
|
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"
|
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="writing"
|
401 |
+
>
|
402 |
+
כתיבה
|
403 |
+
</button>
|
404 |
+
<button
|
405 |
+
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"
|
406 |
+
data-category="design"
|
407 |
+
>
|
408 |
+
עיצוב
|
409 |
+
</button>
|
410 |
+
<button
|
411 |
+
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"
|
412 |
+
data-category="coding"
|
413 |
+
>
|
414 |
+
תכנות
|
415 |
+
</button>
|
416 |
+
<button
|
417 |
+
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"
|
418 |
+
data-category="video"
|
419 |
+
>
|
420 |
+
וידאו
|
421 |
+
</button>
|
422 |
+
</div>
|
423 |
+
</div>
|
424 |
+
</div>
|
425 |
+
</div>
|
426 |
+
|
427 |
+
<!-- /* --- Stats --- */ -->
|
428 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-8">
|
429 |
+
<!-- /* ... (content unchanged, including clickable stat boxes) ... */ -->
|
430 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
|
431 |
+
<div class="flex items-center">
|
432 |
+
<div class="p-3 rounded-full bg-blue-50 text-blue-600 ml-3">
|
433 |
+
<i class="fas fa-tools text-lg"></i>
|
434 |
+
</div>
|
435 |
+
<div>
|
436 |
+
<p class="text-gray-500 text-sm">סה"כ כלים</p>
|
437 |
+
<h3 class="text-xl font-semibold" id="totalTools">0</h3>
|
438 |
+
</div>
|
439 |
+
</div>
|
440 |
+
</div>
|
441 |
+
<div
|
442 |
+
id="topRatedStatBox"
|
443 |
+
class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 transition clickable-stat"
|
444 |
+
>
|
445 |
+
<div class="flex items-center">
|
446 |
+
<div class="p-3 rounded-full bg-purple-50 text-purple-600 ml-3">
|
447 |
+
<i class="fas fa-star text-lg"></i>
|
448 |
+
</div>
|
449 |
+
<div>
|
450 |
+
<p class="text-gray-500 text-sm">מובילים בדירוג</p>
|
451 |
+
<h3 class="text-xl font-semibold" id="topRated">0</h3>
|
452 |
+
</div>
|
453 |
+
</div>
|
454 |
+
</div>
|
455 |
+
<div
|
456 |
+
id="newToolsStatBox"
|
457 |
+
class="bg-white p-4 rounded-lg shadow-sm border border-gray-100 transition clickable-stat"
|
458 |
+
>
|
459 |
+
<div class="flex items-center">
|
460 |
+
<div class="p-3 rounded-full bg-green-50 text-green-600 ml-3">
|
461 |
+
<i class="fas fa-bolt text-lg"></i>
|
462 |
+
</div>
|
463 |
+
<div>
|
464 |
+
<p class="text-gray-500 text-sm">חדשים השבוע</p>
|
465 |
+
<h3 class="text-xl font-semibold" id="newTools">0</h3>
|
466 |
+
</div>
|
467 |
+
</div>
|
468 |
+
</div>
|
469 |
+
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
|
470 |
+
<div class="flex items-center">
|
471 |
+
<div class="p-3 rounded-full bg-yellow-50 text-yellow-600 ml-3">
|
472 |
+
<i class="fas fa-tags text-lg"></i>
|
473 |
+
</div>
|
474 |
+
<div>
|
475 |
+
<p class="text-gray-500 text-sm">קטגוריות</p>
|
476 |
+
<h3 class="text-xl font-semibold" id="totalCategories">0</h3>
|
477 |
+
</div>
|
478 |
+
</div>
|
479 |
+
</div>
|
480 |
+
</div>
|
481 |
+
|
482 |
+
<!-- /* --- Tools Grid --- */ -->
|
483 |
+
<div
|
484 |
+
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"
|
485 |
+
id="toolsContainer"
|
486 |
+
>
|
487 |
+
<!-- /* --- Tools will be loaded here --- */ -->
|
488 |
+
<p id="loadingMessage" class="text-center text-gray-500 col-span-full">
|
489 |
+
טוען כלים...
|
490 |
+
</p>
|
491 |
+
</div>
|
492 |
+
|
493 |
+
<!-- /* --- YouTube Videos Section --- */ -->
|
494 |
+
<div class="mt-16">
|
495 |
+
<!-- /* ... (content unchanged) ... */ -->
|
496 |
+
<h2 class="text-2xl font-bold mb-6 text-gray-800 border-b pb-2">
|
497 |
+
סרטונים נבחרים מערוץ היוטיוב שלי
|
498 |
+
</h2>
|
499 |
+
<div
|
500 |
+
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"
|
501 |
+
id="videosContainer"
|
502 |
+
>
|
503 |
+
<!-- /* --- Videos will be loaded here --- */ -->
|
504 |
+
</div>
|
505 |
+
</div>
|
506 |
+
</main>
|
507 |
+
|
508 |
+
<!-- /* --- JSON Editor Modal (Admin Feature) --- */ -->
|
509 |
+
<div
|
510 |
+
id="jsonEditorModal"
|
511 |
+
class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden"
|
512 |
+
>
|
513 |
+
<!-- /* ... (content unchanged) ... */ -->
|
514 |
+
<div
|
515 |
+
class="bg-white rounded-lg shadow-xl w-full max-w-4xl max-h-[90vh] flex flex-col"
|
516 |
+
>
|
517 |
+
<div
|
518 |
+
class="px-6 py-4 border-b border-gray-200 flex justify-between items-center"
|
519 |
+
>
|
520 |
+
<h3 class="text-lg font-semibold">עריכת הנתונים ב-JSON</h3>
|
521 |
+
<button id="closeModalBtn" class="text-gray-500 hover:text-gray-700">
|
522 |
+
<i class="fas fa-times"></i>
|
523 |
+
</button>
|
524 |
+
</div>
|
525 |
+
<div class="p-6 flex-1 overflow-auto">
|
526 |
+
<div class="flex mb-4">
|
527 |
+
<button
|
528 |
+
id="showToolsBtn"
|
529 |
+
class="px-4 py-2 bg-blue-600 text-white rounded-l-lg"
|
530 |
+
>
|
531 |
+
כלים
|
532 |
+
</button>
|
533 |
+
<button
|
534 |
+
id="showVideosBtn"
|
535 |
+
class="px-4 py-2 bg-gray-200 text-gray-700 rounded-r-lg"
|
536 |
+
>
|
537 |
+
סרטונים
|
538 |
+
</button>
|
539 |
+
</div>
|
540 |
+
<textarea
|
541 |
+
id="jsonEditor"
|
542 |
+
class="w-full h-96 p-4 border border-gray-300 rounded-lg font-mono text-sm"
|
543 |
+
spellcheck="false"
|
544 |
+
style="direction: ltr; text-align: left"
|
545 |
+
></textarea>
|
546 |
+
</div>
|
547 |
+
<div
|
548 |
+
class="px-6 py-4 border-t border-gray-200 flex justify-end space-x-3 space-x-reverse"
|
549 |
+
>
|
550 |
+
<button
|
551 |
+
id="cancelEditBtn"
|
552 |
+
class="px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50 transition"
|
553 |
+
>
|
554 |
+
ביטול
|
555 |
+
</button>
|
556 |
+
<button
|
557 |
+
id="saveJsonBtn"
|
558 |
+
class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition"
|
559 |
+
>
|
560 |
+
שמור שינויים (באחסון המקומי)
|
561 |
+
</button>
|
562 |
+
</div>
|
563 |
+
</div>
|
564 |
+
</div>
|
565 |
+
<div
|
566 |
+
id="suggestToolModal"
|
567 |
+
class="fixed inset-0 bg-black bg-opacity-40 flex items-center justify-center z-[9999] px-4 hidden"
|
568 |
+
>
|
569 |
+
<div
|
570 |
+
class="bg-white rounded-lg w-full max-w-md shadow-lg max-h-[90vh] overflow-hidden flex flex-col text-right relative"
|
571 |
+
>
|
572 |
+
<!-- תוכן -->
|
573 |
+
<div class="p-6 overflow-y-auto flex-grow">
|
574 |
+
<h2 class="text-xl font-semibold mb-4">הצעת כלי חדש</h2>
|
575 |
+
<form id="suggestToolForm" class="space-y-4">
|
576 |
+
<div>
|
577 |
+
<label class="block mb-1">שם הכלי</label>
|
578 |
+
<input
|
579 |
+
type="text"
|
580 |
+
name="name"
|
581 |
+
required
|
582 |
+
class="w-full border rounded p-2"
|
583 |
+
/>
|
584 |
+
</div>
|
585 |
+
|
586 |
+
<div>
|
587 |
+
<label class="block mb-1">לינק</label>
|
588 |
+
<input
|
589 |
+
type="url"
|
590 |
+
name="url"
|
591 |
+
required
|
592 |
+
placeholder="כתובת URL של הכלי: לדוגמא: https://linktr.ee/sagib"
|
593 |
+
dir="ltr"
|
594 |
+
class="w-full border rounded p-2"
|
595 |
+
/>
|
596 |
+
</div>
|
597 |
+
|
598 |
+
<div>
|
599 |
+
<label class="block mb-1">תיאור קצר</label>
|
600 |
+
<textarea
|
601 |
+
name="description"
|
602 |
+
required
|
603 |
+
class="w-full border rounded p-2"
|
604 |
+
></textarea>
|
605 |
+
</div>
|
606 |
+
|
607 |
+
<div>
|
608 |
+
<label class="block mb-1">השם שלך</label>
|
609 |
+
<input
|
610 |
+
type="text"
|
611 |
+
name="userName"
|
612 |
+
placeholder="איך לקרוא לך כשנחזור אליך?"
|
613 |
+
class="w-full border rounded p-2"
|
614 |
+
/>
|
615 |
+
</div>
|
616 |
+
|
617 |
+
<div>
|
618 |
+
<label class="block mb-1">מס' טלפון נייד</label>
|
619 |
+
<input
|
620 |
+
type="tel"
|
621 |
+
name="userPhone"
|
622 |
+
placeholder="05X-XXXXXXX"
|
623 |
+
class="w-full border rounded p-2"
|
624 |
+
dir="ltr"
|
625 |
+
/>
|
626 |
+
</div>
|
627 |
+
|
628 |
+
<p class="text-sm text-gray-500">
|
629 |
+
נשמח לחזור אליך כשהכלי שצעת נוסף לאתר ❤️
|
630 |
+
</p>
|
631 |
+
<p class="text-sm text-gray-500 italic">
|
632 |
+
✦ הפרטים שלך נשמרים אצלנו רק לצורך עדכון – אין שימוש אחר.
|
633 |
+
</p>
|
634 |
+
</form>
|
635 |
+
</div>
|
636 |
+
|
637 |
+
<!-- כפתורים קבועים בתחתית -->
|
638 |
+
<div
|
639 |
+
class="sticky bottom-0 bg-white/80 backdrop-blur-md px-6 py-4 border-t flex justify-center space-x-4 space-x-reverse z-10 rounded-b-lg"
|
640 |
+
>
|
641 |
+
<button
|
642 |
+
type="button"
|
643 |
+
onclick="closeSuggestModal()"
|
644 |
+
class="px-5 py-2 bg-gray-200 text-gray-800 rounded hover:bg-gray-300"
|
645 |
+
>
|
646 |
+
ביטול
|
647 |
+
</button>
|
648 |
+
<button
|
649 |
+
type="submit"
|
650 |
+
form="suggestToolForm"
|
651 |
+
class="px-6 py-2 bg-purple-600 text-white rounded hover:bg-purple-700"
|
652 |
+
>
|
653 |
+
שלח
|
654 |
+
</button>
|
655 |
+
</div>
|
656 |
+
</div>
|
657 |
+
</div>
|
658 |
+
<div
|
659 |
+
id="videoModal"
|
660 |
+
class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center hidden z-[9999]"
|
661 |
+
>
|
662 |
+
<div
|
663 |
+
class="bg-white rounded-lg overflow-hidden w-full max-w-3xl shadow-lg relative"
|
664 |
+
>
|
665 |
+
<button
|
666 |
+
onclick="closeVideoModal()"
|
667 |
+
class="absolute top-2 left-2 text-gray-700 hover:text-red-600 text-xl"
|
668 |
+
>
|
669 |
+
<i class="fas fa-times"></i>
|
670 |
+
</button>
|
671 |
+
<iframe
|
672 |
+
id="videoIframe"
|
673 |
+
class="w-full h-[300px] sm:h-[500px]"
|
674 |
+
src=""
|
675 |
+
frameborder="0"
|
676 |
+
allowfullscreen
|
677 |
+
></iframe>
|
678 |
+
</div>
|
679 |
+
</div>
|
680 |
+
|
681 |
+
<!-- /* --- Footer --- */ -->
|
682 |
+
<footer
|
683 |
+
class="fixed bottom-0 left-0 w-full z-50 backdrop-blur-md bg-white/80 shadow-xl border-t border-gray-200"
|
684 |
+
>
|
685 |
+
<!-- הוספת כפתור צ'אט צף לקובץ index.html -->
|
686 |
+
<!-- Improved Chat Component -->
|
687 |
+
<div id="chatBubble" class="fixed bottom-8 right-5 z-[9999]">
|
688 |
+
<!-- Introductory message -->
|
689 |
+
<div
|
690 |
+
id="chatIntro"
|
691 |
+
class="bg-white p-3 rounded-lg shadow-md mb-2 text-sm max-w-xs chat-intro-enter hidden"
|
692 |
+
>
|
693 |
+
שלום! אני עוזר AI של שגיא. אשמח לעזור לך למצוא כלי AI מתאים או לענות
|
694 |
+
על שאלות.
|
695 |
+
<button onclick="hideChatIntro()" class="text-gray-500 float-left">
|
696 |
+
<i class="fas fa-times"></i>
|
697 |
+
</button>
|
698 |
+
</div>
|
699 |
+
|
700 |
+
<!-- Chat Button -->
|
701 |
+
<button
|
702 |
+
id="chatButton"
|
703 |
+
onclick="toggleChatWindow()"
|
704 |
+
class="chat-pulse bg-gradient-to-r from-purple-500 to-indigo-600 hover:from-purple-600 hover:to-indigo-700 text-white px-4 py-3 rounded-full shadow-xl flex items-center space-x-2 space-x-reverse"
|
705 |
+
>
|
706 |
+
<i class="fas fa-robot"></i>
|
707 |
+
<span>צ'אט</span>
|
708 |
+
</button>
|
709 |
+
|
710 |
+
<!-- Chat Window -->
|
711 |
+
<div
|
712 |
+
id="chatWindow"
|
713 |
+
class="hidden mt-3 w-[360px] h-[500px] bg-white rounded-2xl shadow-2xl border border-gray-200 overflow-hidden relative"
|
714 |
+
>
|
715 |
+
<!-- Chat Header -->
|
716 |
+
<div
|
717 |
+
class="bg-gradient-to-r from-purple-500 to-indigo-600 text-white p-3 flex justify-between items-center"
|
718 |
+
>
|
719 |
+
<button onclick="toggleChatWindow()" class="text-white">
|
720 |
+
<i class="fas fa-times"></i>
|
721 |
+
</button>
|
722 |
+
<div class="chat-header">
|
723 |
+
צ'אט עם הבינה של שגיא
|
724 |
+
<span
|
725 |
+
id="toolsCount"
|
726 |
+
class="ml-2 text-sm bg-white text-purple-600 font-semibold px-2 py-1 rounded-full shadow-sm"
|
727 |
+
></span>
|
728 |
+
</div>
|
729 |
+
<!-- <div class="font-medium">עוזר AI של שגיא</div> -->
|
730 |
+
<div class="w-6"></div>
|
731 |
+
<!-- Spacer for balance -->
|
732 |
+
</div>
|
733 |
+
|
734 |
+
<!-- Chat iframe -->
|
735 |
+
<iframe
|
736 |
+
src="https://sagi-ba-sagi-ai-tools-chatbot-main-g1prqf.streamlit.app/?embed=true"
|
737 |
+
class="w-full h-full border-none"
|
738 |
+
></iframe>
|
739 |
+
</div>
|
740 |
+
</div>
|
741 |
+
|
742 |
+
<script>
|
743 |
+
function toggleChatWindow() {
|
744 |
+
const chatWindow = document.getElementById('chatWindow');
|
745 |
+
chatWindow.classList.toggle('hidden');
|
746 |
+
}
|
747 |
+
</script>
|
748 |
+
|
749 |
+
<!-- <span>© 2025 כל הזכויות שמורות לשגיא בר און.</span> -->
|
750 |
+
<div class="container mx-auto px-4 py-3 text-center space-y-2">
|
751 |
+
<!-- כפתור התקנת אפליקציה -->
|
752 |
+
<div id="installAppContainer" class="flex justify-center">
|
753 |
+
<button
|
754 |
+
id="installAppBtn"
|
755 |
+
class="mt-2 px-4 py-2 rounded-xl bg-gradient-to-br from-green-500 to-emerald-600 text-white font-bold shadow hover:scale-105 transition"
|
756 |
+
style="display: none"
|
757 |
+
>
|
758 |
+
📲 התקנת האפליקציה
|
759 |
+
</button>
|
760 |
+
</div>
|
761 |
+
|
762 |
+
<div class="flex justify-center gap-4">
|
763 |
+
<!-- אייקונים -->
|
764 |
+
<a
|
765 |
+
href="https://chat.whatsapp.com/GPFASYBEA9CFGUMCVZ5RXP"
|
766 |
+
target="_blank"
|
767 |
+
class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-green-500 hover:bg-green-500 hover:text-white transition"
|
768 |
+
><i class="fab fa-whatsapp"></i
|
769 |
+
></a>
|
770 |
+
<a
|
771 |
+
href="http://www.linkedin.com/in/sagi-bar-on"
|
772 |
+
target="_blank"
|
773 |
+
class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-500 hover:bg-blue-700 hover:text-white transition"
|
774 |
+
><i class="fab fa-linkedin-in"></i
|
775 |
+
></a>
|
776 |
+
<a
|
777 |
+
href="https://www.facebook.com/SAGI.BARON"
|
778 |
+
target="_blank"
|
779 |
+
class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-blue-600 hover:bg-blue-800 hover:text-white transition"
|
780 |
+
><i class="fab fa-facebook-f"></i
|
781 |
+
></a>
|
782 |
+
<a
|
783 |
+
href="https://www.youtube.com/@SAGIBARON"
|
784 |
+
target="_blank"
|
785 |
+
class="w-9 h-9 rounded-full bg-white shadow flex items-center justify-center text-red-500 hover:bg-red-700 hover:text-white transition"
|
786 |
+
><i class="fab fa-youtube"></i
|
787 |
+
></a>
|
788 |
+
</div>
|
789 |
+
<button
|
790 |
+
id="editJsonBtnFooter"
|
791 |
+
class="px-4 py-2 rounded-xl bg-gradient-to-br from-pink-500 to-purple-600 text-white font-bold shadow hover:scale-105 transition"
|
792 |
+
>
|
793 |
+
<i class="fas fa-pen-to-square ml-2"></i> הציעו כלי חדש
|
794 |
+
</button>
|
795 |
+
<p class="text-gray-500 text-xs">
|
796 |
+
© 2025 כל הזכויות שמורות לשגיא בר און
|
797 |
+
</p>
|
798 |
+
</div>
|
799 |
+
<!-- זהו ה־div הסוגר של ה־container -->
|
800 |
+
</footer>
|
801 |
+
|
802 |
+
<!-- /* --- Load Tailwind CSS via CDN --- */ -->
|
803 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
804 |
+
|
805 |
+
<!-- /* ----------------------------------- */
|
806 |
+
/* ------- START OF JAVASCRIPT ------- */
|
807 |
+
/* ----------------------------------- */ -->
|
808 |
+
<script>
|
809 |
+
// --- DOM Elements ---
|
810 |
+
const toolsContainer = document.getElementById('toolsContainer');
|
811 |
+
const videosContainer = document.getElementById('videosContainer');
|
812 |
+
const searchInput = document.getElementById('searchInput');
|
813 |
+
const filterButtons = document.querySelectorAll('.filter-btn');
|
814 |
+
const totalToolsElement = document.getElementById('totalTools');
|
815 |
+
const topRatedElement = document.getElementById('topRated');
|
816 |
+
const newToolsElement = document.getElementById('newTools');
|
817 |
+
const totalCategoriesElement = document.getElementById('totalCategories');
|
818 |
+
const mobileMenuButton = document.getElementById('mobileMenuButton');
|
819 |
+
const mobileMenu = document.getElementById('mobileMenu');
|
820 |
+
const jsonEditorModal = document.getElementById('jsonEditorModal');
|
821 |
+
const jsonEditor = document.getElementById('jsonEditor');
|
822 |
+
const closeModalBtn = document.getElementById('closeModalBtn');
|
823 |
+
const cancelEditBtn = document.getElementById('cancelEditBtn');
|
824 |
+
const saveJsonBtn = document.getElementById('saveJsonBtn');
|
825 |
+
const showToolsBtn = document.getElementById('showToolsBtn');
|
826 |
+
const showVideosBtn = document.getElementById('showVideosBtn');
|
827 |
+
const refreshBtn = document.getElementById('refreshBtn');
|
828 |
+
const refreshBtnMobile = document.getElementById('refreshBtnMobile');
|
829 |
+
const loadingMessage = document.getElementById('loadingMessage'); // For showing loading status
|
830 |
+
|
831 |
+
const topRatedStatBox = document.getElementById('topRatedStatBox');
|
832 |
+
const newToolsStatBox = document.getElementById('newToolsStatBox');
|
833 |
+
const totalToolsStatBox = document
|
834 |
+
.querySelector('[id="totalTools"]')
|
835 |
+
.closest('.bg-white');
|
836 |
+
let filteredStatView = null; // 'topRated', 'newTools', או null
|
837 |
+
|
838 |
+
if (totalToolsStatBox) {
|
839 |
+
totalToolsStatBox.classList.add('clickable-stat');
|
840 |
+
totalToolsStatBox.addEventListener('click', () => {
|
841 |
+
filteredStatView = null;
|
842 |
+
currentSearchTerm = '';
|
843 |
+
currentCategory = 'all';
|
844 |
+
document
|
845 |
+
.querySelectorAll('.filter-btn')
|
846 |
+
.forEach((btn) => btn.classList.remove('active'));
|
847 |
+
const allBtn = document.querySelector(
|
848 |
+
'.filter-btn[data-category="all"]'
|
849 |
+
);
|
850 |
+
if (allBtn) allBtn.classList.add('active');
|
851 |
+
renderTools();
|
852 |
+
scrollToTools();
|
853 |
+
});
|
854 |
+
}
|
855 |
+
|
856 |
+
if (topRatedStatBox) {
|
857 |
+
topRatedStatBox.addEventListener('click', () => {
|
858 |
+
filteredStatView = 'topRated';
|
859 |
+
currentSearchTerm = '';
|
860 |
+
currentCategory = 'all';
|
861 |
+
renderTools();
|
862 |
+
scrollToTools();
|
863 |
+
});
|
864 |
+
}
|
865 |
+
|
866 |
+
if (newToolsStatBox) {
|
867 |
+
newToolsStatBox.addEventListener('click', () => {
|
868 |
+
filteredStatView = 'newTools';
|
869 |
+
currentSearchTerm = '';
|
870 |
+
currentCategory = 'all';
|
871 |
+
renderTools();
|
872 |
+
scrollToTools();
|
873 |
+
});
|
874 |
+
}
|
875 |
+
|
876 |
+
// --- State ---
|
877 |
+
let currentCategory = 'all';
|
878 |
+
let currentSearchTerm = '';
|
879 |
+
let toolsData = { tools: [], videos: [] }; // Holds the data fetched from server
|
880 |
+
let currentSort = 'newest'; // 'newest', 'rating'
|
881 |
+
|
882 |
+
// --- Initialize ---
|
883 |
+
async function init() {
|
884 |
+
showLoading();
|
885 |
+
try {
|
886 |
+
const savedSearch = localStorage.getItem('searchTerm');
|
887 |
+
if (savedSearch) {
|
888 |
+
searchInput.value = savedSearch;
|
889 |
+
currentSearchTerm = savedSearch;
|
890 |
+
}
|
891 |
+
|
892 |
+
await loadData(); // ← הנתונים נטענים כאן
|
893 |
+
sortTools(currentSort);
|
894 |
+
renderTools();
|
895 |
+
renderVideos();
|
896 |
+
updateStats();
|
897 |
+
setupEventListeners();
|
898 |
+
|
899 |
+
// 👇 כאן נוסיף את הקריאה לבאנר לאחר שהכלים נטענו
|
900 |
+
showNewToolBanner();
|
901 |
+
|
902 |
+
if (!currentSearchTerm) {
|
903 |
+
const allFilterBtn = document.querySelector(
|
904 |
+
'.filter-btn[data-category="all"]'
|
905 |
+
);
|
906 |
+
if (allFilterBtn) {
|
907 |
+
allFilterBtn.classList.add('active');
|
908 |
+
}
|
909 |
+
}
|
910 |
+
} catch (error) {
|
911 |
+
console.error('Initialization failed:', error);
|
912 |
+
showError('שגיאה בטעינת הנתונים הראשונית. נסה לרענן את הדף.');
|
913 |
+
} finally {
|
914 |
+
hideLoading();
|
915 |
+
}
|
916 |
+
}
|
917 |
+
|
918 |
+
const speechSynthesis = window.speechSynthesis;
|
919 |
+
let currentUtterance = null;
|
920 |
+
|
921 |
+
// פונקציה להקראת טקסט בעברית
|
922 |
+
function speakText(text) {
|
923 |
+
// עצירת הקראה קודמת אם יש
|
924 |
+
if (speechSynthesis.speaking) {
|
925 |
+
speechSynthesis.cancel();
|
926 |
+
|
927 |
+
// אם זאת אותה הקראה שכבר פועלת, פשוט נעצור ונצא
|
928 |
+
if (currentUtterance && currentUtterance.text === text) {
|
929 |
+
currentUtterance = null;
|
930 |
+
return;
|
931 |
+
}
|
932 |
+
}
|
933 |
+
|
934 |
+
// יצירת הקראה חדשה
|
935 |
+
const utterance = new SpeechSynthesisUtterance(text);
|
936 |
+
|
937 |
+
// הגדרת השפה לעברית
|
938 |
+
utterance.lang = 'he-IL';
|
939 |
+
|
940 |
+
// בדיקת קולות זמינים ובחירת קול עברי
|
941 |
+
const voices = speechSynthesis.getVoices();
|
942 |
+
|
943 |
+
if (voices.length) {
|
944 |
+
const hebrewVoice = voices.find((voice) =>
|
945 |
+
/he|hebrew|ivrit/i.test(voice.lang)
|
946 |
+
);
|
947 |
+
|
948 |
+
if (hebrewVoice) {
|
949 |
+
utterance.voice = hebrewVoice;
|
950 |
+
console.log('נבחר קול עברי:', hebrewVoice.name);
|
951 |
+
} else {
|
952 |
+
console.log('לא נמצא קול עברי, משתמש בקול ברירת מחדל');
|
953 |
+
}
|
954 |
+
// ננסה להשתמש בקול גוגל
|
955 |
+
const googleVoice = voices.find(
|
956 |
+
(voice) =>
|
957 |
+
voice.name.includes('Google') &&
|
958 |
+
(voice.name.includes('US') || voice.name.includes('UK'))
|
959 |
+
);
|
960 |
+
|
961 |
+
if (googleVoice) {
|
962 |
+
utterance.voice = googleVoice;
|
963 |
+
}
|
964 |
+
} else {
|
965 |
+
// במקרה שהקולות עדיין לא נטענו, נגדיר מאזין חד-פעמי
|
966 |
+
speechSynthesis.addEventListener(
|
967 |
+
'voiceschanged',
|
968 |
+
function loadVoice() {
|
969 |
+
const voices = speechSynthesis.getVoices();
|
970 |
+
const hebrewVoice = voices.find((voice) =>
|
971 |
+
/he|hebrew|ivrit/i.test(voice.lang)
|
972 |
+
);
|
973 |
+
if (hebrewVoice) {
|
974 |
+
utterance.voice = hebrewVoice;
|
975 |
+
console.log('נבחר קול עברי (מדחייה):', hebrewVoice.name);
|
976 |
+
}
|
977 |
+
// הסרת המאזין אחרי הפעלה ראשונה
|
978 |
+
speechSynthesis.removeEventListener('voiceschanged', loadVoice);
|
979 |
+
},
|
980 |
+
{ once: true }
|
981 |
+
);
|
982 |
+
}
|
983 |
+
|
984 |
+
// שמירת ההקראה הנוכחית
|
985 |
+
currentUtterance = utterance;
|
986 |
+
|
987 |
+
// טיפול באירוע סיום הקראה
|
988 |
+
utterance.onend = () => {
|
989 |
+
currentUtterance = null;
|
990 |
+
|
991 |
+
// עדכון כל הכפתורים למצב "לא מנגן"
|
992 |
+
document.querySelectorAll('.speak-button').forEach((btn) => {
|
993 |
+
btn.innerHTML = '<i class="fas fa-volume-up"></i>';
|
994 |
+
btn.classList.remove('speaking');
|
995 |
+
});
|
996 |
+
};
|
997 |
+
|
998 |
+
// הפעלת ההקראה
|
999 |
+
speechSynthesis.speak(utterance);
|
1000 |
+
}
|
1001 |
+
|
1002 |
+
// --- UI Feedback ---
|
1003 |
+
function showLoading() {
|
1004 |
+
if (loadingMessage) loadingMessage.style.display = 'block';
|
1005 |
+
if (toolsContainer) toolsContainer.innerHTML = ''; // Clear container while loading
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
function hideLoading() {
|
1009 |
+
if (loadingMessage) loadingMessage.style.display = 'none';
|
1010 |
+
}
|
1011 |
+
|
1012 |
+
function showError(message) {
|
1013 |
+
if (toolsContainer) {
|
1014 |
+
toolsContainer.innerHTML = `<p class="text-center text-red-600 col-span-full">${message}</p>`;
|
1015 |
+
}
|
1016 |
+
hideLoading(); // Make sure loading message is hidden
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
// --- Data Fetching ---
|
1020 |
+
async function fetchDefaultData() {
|
1021 |
+
console.log('Fetching latest data from server...'); // Log fetching attempt
|
1022 |
+
try {
|
1023 |
+
const [toolsResponse, videosResponse] = await Promise.all([
|
1024 |
+
fetch('tools.json?cacheBust=' + Date.now()), // Cache busting
|
1025 |
+
fetch('videos.json?cacheBust=' + Date.now()), // Cache busting
|
1026 |
+
]);
|
1027 |
+
|
1028 |
+
if (!toolsResponse.ok || !videosResponse.ok) {
|
1029 |
+
const errorMsg = `HTTP error! Status: Tools ${toolsResponse.status}, Videos ${videosResponse.status}`;
|
1030 |
+
console.error(errorMsg);
|
1031 |
+
throw new Error('שגיאה בקבלת נתונים מהשרת.'); // User-friendly error
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
const [toolsArray, videosArray] = await Promise.all([
|
1035 |
+
toolsResponse.json(),
|
1036 |
+
videosResponse.json(),
|
1037 |
+
]);
|
1038 |
+
|
1039 |
+
// --- Process fetched data with defaults ---
|
1040 |
+
const processedTools = toolsArray.map((tool) => ({
|
1041 |
+
...tool,
|
1042 |
+
rating: tool.rating ?? 0,
|
1043 |
+
isNew: tool.isNew ?? false,
|
1044 |
+
category: tool.category ?? 'general',
|
1045 |
+
icon: tool.icon || 'fas fa-tools',
|
1046 |
+
url: tool.url || '#',
|
1047 |
+
description: tool.description || 'אין תיאור זמין.',
|
1048 |
+
name: tool.name || 'שם לא ידוע',
|
1049 |
+
}));
|
1050 |
+
const processedVideos = videosArray.map((video) => ({
|
1051 |
+
...video,
|
1052 |
+
url: video.url || '#',
|
1053 |
+
title: video.title || 'כותרת חסרה',
|
1054 |
+
description: video.description || 'אין תיאור זמין.',
|
1055 |
+
date: video.date ?? new Date().toISOString(),
|
1056 |
+
}));
|
1057 |
+
|
1058 |
+
console.log('Data fetched successfully.');
|
1059 |
+
return { tools: processedTools, videos: processedVideos };
|
1060 |
+
} catch (error) {
|
1061 |
+
console.error('Failed to fetch default data:', error);
|
1062 |
+
// Re-throw the error or a more specific one to be caught by the caller
|
1063 |
+
throw new Error(
|
1064 |
+
'כשל בטעינת נתוני ברירת המחדל מהשרת. בדוק את הקבצים tools.json ו-videos.json.'
|
1065 |
+
);
|
1066 |
+
}
|
1067 |
+
}
|
1068 |
+
|
1069 |
+
// --- Data Loading Strategy ---
|
1070 |
+
// MODIFIED: Always fetch fresh data from the server on load.
|
1071 |
+
async function loadData() {
|
1072 |
+
console.log('loadData called - fetching fresh data.');
|
1073 |
+
try {
|
1074 |
+
toolsData = await fetchDefaultData();
|
1075 |
+
// Note: We are NOT saving to localStorage here anymore for loading purposes.
|
1076 |
+
// saveData(); // Removed - No longer saving fetched data automatically
|
1077 |
+
} catch (error) {
|
1078 |
+
console.error('Error in loadData:', error);
|
1079 |
+
toolsData = { tools: [], videos: [] }; // Set empty data on error
|
1080 |
+
// Re-throw error so init() can handle UI feedback
|
1081 |
+
throw error;
|
1082 |
+
}
|
1083 |
+
}
|
1084 |
+
|
1085 |
+
// --- Save Data to Local Storage (Used ONLY by JSON Editor) ---
|
1086 |
+
// Note: Data saved here will be overwritten on next page load/refresh.
|
1087 |
+
function saveData() {
|
1088 |
+
try {
|
1089 |
+
// Save the current state (potentially modified by editor) to localStorage
|
1090 |
+
localStorage.setItem('aiToolsData', JSON.stringify(toolsData));
|
1091 |
+
console.log(
|
1092 |
+
'Data saved to localStorage (by editor). Will be overwritten on next load.'
|
1093 |
+
);
|
1094 |
+
} catch (e) {
|
1095 |
+
console.error('Error saving data to localStorage:', e);
|
1096 |
+
alert('שגיאה בשמירת הנתונים באחסון המקומי.');
|
1097 |
+
}
|
1098 |
+
}
|
1099 |
+
|
1100 |
+
// --- Sorting Function (Unchanged) ---
|
1101 |
+
function sortTools(sortBy) {
|
1102 |
+
if (!toolsData || !Array.isArray(toolsData.tools)) return;
|
1103 |
+
console.log('Sorting by:', sortBy);
|
1104 |
+
currentSort = sortBy;
|
1105 |
+
toolsData.tools.sort((a, b) => {
|
1106 |
+
if (sortBy === 'newest') {
|
1107 |
+
const aIsNew = a.isNew || false;
|
1108 |
+
const bIsNew = b.isNew || false;
|
1109 |
+
if (aIsNew !== bIsNew) return bIsNew - aIsNew;
|
1110 |
+
return 0;
|
1111 |
+
} else if (sortBy === 'rating') {
|
1112 |
+
const aRating = a.rating || 0;
|
1113 |
+
const bRating = b.rating || 0;
|
1114 |
+
if (bRating !== aRating) return bRating - aRating;
|
1115 |
+
return 0;
|
1116 |
+
}
|
1117 |
+
return 0;
|
1118 |
+
});
|
1119 |
+
}
|
1120 |
+
function scrollToTools() {
|
1121 |
+
const toolsSection = document.getElementById('toolsContainer');
|
1122 |
+
if (toolsSection) {
|
1123 |
+
toolsSection.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
1124 |
+
}
|
1125 |
+
}
|
1126 |
+
|
1127 |
+
// --- Rendering Functions (Unchanged logic, but added hideLoading) ---
|
1128 |
+
function renderTools() {
|
1129 |
+
hideLoading(); // Ensure loading message is hidden before rendering
|
1130 |
+
if (!toolsContainer || !toolsData || !Array.isArray(toolsData.tools)) {
|
1131 |
+
console.error(
|
1132 |
+
'Cannot render tools: Missing container or invalid data.'
|
1133 |
+
);
|
1134 |
+
showError('שגיאה בהצגת הכלים.');
|
1135 |
+
return;
|
1136 |
+
}
|
1137 |
+
const filteredTools = filterTools();
|
1138 |
+
toolsContainer.innerHTML = ''; // Clear previous content
|
1139 |
+
|
1140 |
+
if (
|
1141 |
+
filteredTools.length === 0 &&
|
1142 |
+
currentSearchTerm === '' &&
|
1143 |
+
currentCategory === 'all'
|
1144 |
+
) {
|
1145 |
+
// Show specific message if no tools loaded at all
|
1146 |
+
showError('לא נטענו כלים. בדוק את קובץ tools.json או נסה לרענן.');
|
1147 |
+
} else if (filteredTools.length === 0) {
|
1148 |
+
toolsContainer.innerHTML =
|
1149 |
+
'<p class="text-center text-gray-500 col-span-full">לא נמצאו כלים התואמים את החיפוש, הסינון והמיון.</p>';
|
1150 |
+
} else {
|
1151 |
+
filteredTools.forEach((tool) => {
|
1152 |
+
const toolCard = document.createElement('div');
|
1153 |
+
toolCard.className = `relative tool-card bg-white rounded-lg shadow-sm border border-gray-100 p-6 transition duration-300 ${
|
1154 |
+
tool.isFeatured ? 'ring-2 ring-blue-500' : ''
|
1155 |
+
}`;
|
1156 |
+
|
1157 |
+
// הכנת הטקסט להקראה - שילוב של שם הכלי והתיאור שלו
|
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">
|
1164 |
+
<div class="flex items-center gap-4">
|
1165 |
+
<!-- לוגו הכלי -->
|
1166 |
+
<img src="${tool.logo}" alt="${
|
1167 |
+
tool.name
|
1168 |
+
} Logo" class="w-14 h-14 object-contain rounded bg-white p-1 shadow-sm">
|
1169 |
+
|
1170 |
+
<div>
|
1171 |
+
<!-- שם הכלי, תגית 'חדש!' וכפתור רמקול -->
|
1172 |
+
<div class="flex items-center gap-2">
|
1173 |
+
<h3 class="text-xl font-semibold">${
|
1174 |
+
tool.name
|
1175 |
+
}</h3>
|
1176 |
+
${
|
1177 |
+
tool.isNew
|
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 |
+
"\\'"
|
1184 |
+
)}')" class="text-blue-600 hover:text-blue-800 focus:outline-none">
|
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
|
1191 |
+
)}">
|
1192 |
+
${getCategoryName(tool.category)}
|
1193 |
+
</span>
|
1194 |
+
</div>
|
1195 |
+
</div>
|
1196 |
+
|
1197 |
+
<!-- אייקון הכלי -->
|
1198 |
+
<i class="${tool.icon} text-gray-500 text-2xl"></i>
|
1199 |
+
</div>
|
1200 |
+
|
1201 |
+
<!-- תיאור -->
|
1202 |
+
<p class="text-gray-700 mb-4 text-base leading-relaxed min-h-[60px]">${
|
1203 |
+
tool.description
|
1204 |
+
}</p>
|
1205 |
+
|
1206 |
+
<!-- דירוג + יוטיוב -->
|
1207 |
+
<div class="flex justify-between items-center mb-4">
|
1208 |
+
<div class="flex items-center gap-3">
|
1209 |
+
${renderRatingStars(tool.rating)}
|
1210 |
+
${
|
1211 |
+
tool.video
|
1212 |
+
? `
|
1213 |
+
<button title="צפה בהדרכה" onclick="openVideoModal('${tool.video}')" class="text-red-500 hover:text-red-600 transition text-xl">
|
1214 |
+
<i class="fab fa-youtube"></i>
|
1215 |
+
</button>`
|
1216 |
+
: ''
|
1217 |
+
}
|
1218 |
+
</div>
|
1219 |
+
</div>
|
1220 |
+
|
1221 |
+
<!-- כפתור גישה לכלי -->
|
1222 |
+
<a href="${
|
1223 |
+
tool.url
|
1224 |
+
}" target="_blank" rel="noopener noreferrer"
|
1225 |
+
class="inline-block w-full text-center px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition ${
|
1226 |
+
tool.url === '#'
|
1227 |
+
? 'opacity-50 cursor-not-allowed'
|
1228 |
+
: ''
|
1229 |
+
}">
|
1230 |
+
<i class="fas fa-external-link-alt ml-2"></i> ${
|
1231 |
+
tool.url !== '#' ? 'גישה לכלי' : 'אין קישור'
|
1232 |
+
}
|
1233 |
+
</a>
|
1234 |
+
`;
|
1235 |
+
|
1236 |
+
toolsContainer.appendChild(toolCard);
|
1237 |
+
});
|
1238 |
+
// אנימציה של הופעה חלקה
|
1239 |
+
requestAnimationFrame(() => {
|
1240 |
+
toolCard.classList.add('visible');
|
1241 |
+
});
|
1242 |
+
|
1243 |
+
// הוספת סגנון CSS לכפתור הקראה פעיל
|
1244 |
+
if (!document.getElementById('speakButtonStyle')) {
|
1245 |
+
const style = document.createElement('style');
|
1246 |
+
style.id = 'speakButtonStyle';
|
1247 |
+
style.innerHTML = `
|
1248 |
+
.speak-button.speaking { color: #4f46e5; animation: pulse 1.5s infinite; }
|
1249 |
+
@keyframes pulse {
|
1250 |
+
0% { transform: scale(1); }
|
1251 |
+
50% { transform: scale(1.2); }
|
1252 |
+
100% { transform: scale(1); }
|
1253 |
+
}
|
1254 |
+
`;
|
1255 |
+
document.head.appendChild(style);
|
1256 |
+
}
|
1257 |
+
}
|
1258 |
+
}
|
1259 |
+
|
1260 |
+
// פונקציה נוספת שמוחקת את ההקראה בעת עזיבת העמוד
|
1261 |
+
function cleanupSpeech() {
|
1262 |
+
if (speechSynthesis) {
|
1263 |
+
speechSynthesis.cancel();
|
1264 |
+
}
|
1265 |
+
}
|
1266 |
+
|
1267 |
+
// הוספת אירוע לניקוי ההקראה בעת עזיבת העמוד
|
1268 |
+
window.addEventListener('beforeunload', cleanupSpeech);
|
1269 |
+
|
1270 |
+
// עדכון אירוע הקלקה על כפתור הקראה - להוסיף מחלקת CSS ולשנות אייקון
|
1271 |
+
document.addEventListener('click', function (e) {
|
1272 |
+
if (e.target.closest('.speak-button')) {
|
1273 |
+
const button = e.target.closest('.speak-button');
|
1274 |
+
|
1275 |
+
// החלפת האייקון והוספת מחלקת CSS מהבהבת
|
1276 |
+
if (speechSynthesis.speaking && currentUtterance) {
|
1277 |
+
// אם יש הקראה פעילה, נעדכן את כל הכפתורים
|
1278 |
+
document.querySelectorAll('.speak-button').forEach((btn) => {
|
1279 |
+
btn.innerHTML = '<i class="fas fa-volume-up"></i>';
|
1280 |
+
btn.classList.remove('speaking');
|
1281 |
+
});
|
1282 |
+
|
1283 |
+
// ואז נעדכן את הכפתור הנוכחי אם ההקראה ממשיכה
|
1284 |
+
if (!button.classList.contains('speaking')) {
|
1285 |
+
button.innerHTML = '<i class="fas fa-volume-mute"></i>';
|
1286 |
+
button.classList.add('speaking');
|
1287 |
+
}
|
1288 |
+
} else {
|
1289 |
+
button.innerHTML = '<i class="fas fa-volume-up"></i>';
|
1290 |
+
button.classList.remove('speaking');
|
1291 |
+
}
|
1292 |
+
}
|
1293 |
+
});
|
1294 |
+
|
1295 |
+
function renderVideos() {
|
1296 |
+
// ... (renderVideos logic remains the same as before) ...
|
1297 |
+
if (
|
1298 |
+
!videosContainer ||
|
1299 |
+
!toolsData ||
|
1300 |
+
!Array.isArray(toolsData.videos)
|
1301 |
+
) {
|
1302 |
+
console.error(
|
1303 |
+
'Cannot render videos: Missing container or invalid data.'
|
1304 |
+
);
|
1305 |
+
if (videosContainer)
|
1306 |
+
videosContainer.innerHTML =
|
1307 |
+
'<p class="text-center text-red-500 col-span-full">שגיאה בהצגת הסרטונים.</p>';
|
1308 |
+
return;
|
1309 |
+
}
|
1310 |
+
videosContainer.innerHTML = '';
|
1311 |
+
if (toolsData.videos.length === 0) {
|
1312 |
+
videosContainer.innerHTML =
|
1313 |
+
'<p class="text-center text-gray-500 col-span-full">אין סרטונים להצגה.</p>';
|
1314 |
+
} else {
|
1315 |
+
toolsData.videos.forEach((video) => {
|
1316 |
+
const videoId = getYouTubeID(video.url);
|
1317 |
+
const embedUrl = videoId
|
1318 |
+
? `https://www.youtube.com/embed/${videoId}`
|
1319 |
+
: '#';
|
1320 |
+
const videoCard = document.createElement('div');
|
1321 |
+
videoCard.className =
|
1322 |
+
'bg-white rounded-lg shadow-sm border border-gray-100 overflow-hidden';
|
1323 |
+
videoCard.innerHTML = `
|
1324 |
+
<div class="relative pt-[56.25%] ${
|
1325 |
+
!videoId
|
1326 |
+
? 'bg-gray-200 flex items-center justify-center'
|
1327 |
+
: ''
|
1328 |
+
}">
|
1329 |
+
${
|
1330 |
+
videoId
|
1331 |
+
? `<iframe class="absolute top-0 left-0 w-full h-full" src="${embedUrl}" frameborder="0" title="${video.title}" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>`
|
1332 |
+
: `<p class="text-gray-500 text-sm p-4">${
|
1333 |
+
video.url === '#'
|
1334 |
+
? 'אין קישור וידאו'
|
1335 |
+
: 'קישור וידאו לא תקין'
|
1336 |
+
}</p>`
|
1337 |
+
}
|
1338 |
+
</div>
|
1339 |
+
<div class="p-4">
|
1340 |
+
<h3 class="text-lg font-semibold mb-2">${
|
1341 |
+
video.title
|
1342 |
+
}</h3>
|
1343 |
+
<p class="text-gray-600 text-sm mb-3 min-h-[40px]">${
|
1344 |
+
video.description
|
1345 |
+
}</p>
|
1346 |
+
<p class="text-gray-500 text-xs">${formatDate(
|
1347 |
+
video.date
|
1348 |
+
)}</p>
|
1349 |
+
</div>`;
|
1350 |
+
videosContainer.appendChild(videoCard);
|
1351 |
+
});
|
1352 |
+
}
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
// --- Helper Functions (Filtering, Stats, Stars, Category, Date - Unchanged) ---
|
1356 |
+
function filterTools() {
|
1357 |
+
if (!toolsData || !Array.isArray(toolsData.tools)) return [];
|
1358 |
+
|
1359 |
+
let filtered = toolsData.tools;
|
1360 |
+
|
1361 |
+
if (filteredStatView === 'topRated') {
|
1362 |
+
filtered = filtered.filter((tool) => tool.rating === 5);
|
1363 |
+
} else if (filteredStatView === 'newTools') {
|
1364 |
+
filtered = filtered.filter((tool) => tool.isNew);
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
return filtered.filter((tool) => {
|
1368 |
+
const searchTermLower = currentSearchTerm.toLowerCase();
|
1369 |
+
const nameMatch = tool.name.toLowerCase().includes(searchTermLower);
|
1370 |
+
const descMatch = tool.description
|
1371 |
+
.toLowerCase()
|
1372 |
+
.includes(searchTermLower);
|
1373 |
+
const categoryNameMatch = getCategoryName(tool.category)
|
1374 |
+
.toLowerCase()
|
1375 |
+
.includes(searchTermLower);
|
1376 |
+
const matchesSearch = nameMatch || descMatch || categoryNameMatch;
|
1377 |
+
const matchesCategoryFilter =
|
1378 |
+
currentCategory === 'all' || tool.category === currentCategory;
|
1379 |
+
return matchesCategoryFilter && matchesSearch;
|
1380 |
+
});
|
1381 |
+
}
|
1382 |
+
|
1383 |
+
function updateStats() {
|
1384 |
+
/* ... (unchanged) ... */
|
1385 |
+
const toolsCount =
|
1386 |
+
toolsData && Array.isArray(toolsData.tools)
|
1387 |
+
? toolsData.tools.length
|
1388 |
+
: 0;
|
1389 |
+
totalToolsElement.textContent = toolsCount;
|
1390 |
+
const topRatedCount =
|
1391 |
+
toolsCount > 0
|
1392 |
+
? toolsData.tools.filter((tool) => tool.rating >= 5).length
|
1393 |
+
: 0;
|
1394 |
+
topRatedElement.textContent = topRatedCount;
|
1395 |
+
const newToolsCount =
|
1396 |
+
toolsCount > 0
|
1397 |
+
? toolsData.tools.filter((tool) => tool.isNew).length
|
1398 |
+
: 0;
|
1399 |
+
newToolsElement.textContent = newToolsCount;
|
1400 |
+
const categories =
|
1401 |
+
toolsCount > 0
|
1402 |
+
? new Set(toolsData.tools.map((tool) => tool.category))
|
1403 |
+
: new Set();
|
1404 |
+
totalCategoriesElement.textContent = categories.size;
|
1405 |
+
}
|
1406 |
+
|
1407 |
+
function renderRatingStars(rating) {
|
1408 |
+
/* ... (unchanged) ... */
|
1409 |
+
let stars = '';
|
1410 |
+
const filledStars = Math.max(0, Math.min(5, Math.round(rating)));
|
1411 |
+
for (let i = 1; i <= 5; i++) {
|
1412 |
+
stars += `<i class="${
|
1413 |
+
i <= filledStars
|
1414 |
+
? 'fas fa-star text-yellow-400'
|
1415 |
+
: 'far fa-star text-gray-300'
|
1416 |
+
} ml-1"></i>`;
|
1417 |
+
}
|
1418 |
+
return stars;
|
1419 |
+
}
|
1420 |
+
function getCategoryName(category) {
|
1421 |
+
/* ... (unchanged) ... */
|
1422 |
+
const categories = {
|
1423 |
+
'ai-agents': 'סוכן AI',
|
1424 |
+
productivity: 'פרודוקטיביות',
|
1425 |
+
writing: 'כתיבה',
|
1426 |
+
design: 'עיצוב',
|
1427 |
+
coding: 'תכנות',
|
1428 |
+
video: 'וידאו',
|
1429 |
+
image: 'תמונה',
|
1430 |
+
education: 'חינוך',
|
1431 |
+
data: 'נתונים',
|
1432 |
+
search: 'חיפוש',
|
1433 |
+
builder: 'בנייה',
|
1434 |
+
'customer-support': 'תמיכה',
|
1435 |
+
automation: 'אוטומציה',
|
1436 |
+
hosting: 'אחסון',
|
1437 |
+
agents: 'סוכנים',
|
1438 |
+
directory: 'אינדקס',
|
1439 |
+
utility: 'כלי עזר',
|
1440 |
+
platform: 'פלטפורמה',
|
1441 |
+
media: 'מדיה',
|
1442 |
+
presentation: 'מצגות',
|
1443 |
+
audio: 'שמע',
|
1444 |
+
infrastructure: 'תשתיות',
|
1445 |
+
nlp: 'עיבוד שפה',
|
1446 |
+
accessibility: 'נגישות',
|
1447 |
+
general: 'כללי',
|
1448 |
+
};
|
1449 |
+
return categories[category] || category || 'כללי';
|
1450 |
+
}
|
1451 |
+
function getCategoryColor(category) {
|
1452 |
+
/* ... (unchanged) ... */
|
1453 |
+
const colors = {
|
1454 |
+
productivity: 'bg-blue-600',
|
1455 |
+
writing: 'bg-purple-600',
|
1456 |
+
design: 'bg-pink-600',
|
1457 |
+
coding: 'bg-green-600',
|
1458 |
+
video: 'bg-red-600',
|
1459 |
+
image: 'bg-yellow-600',
|
1460 |
+
education: 'bg-indigo-600',
|
1461 |
+
data: 'bg-cyan-600',
|
1462 |
+
search: 'bg-teal-600',
|
1463 |
+
builder: 'bg-orange-600',
|
1464 |
+
'customer-support': 'bg-lime-600',
|
1465 |
+
automation: 'bg-sky-600',
|
1466 |
+
hosting: 'bg-amber-600',
|
1467 |
+
agents: 'bg-violet-600',
|
1468 |
+
directory: 'bg-fuchsia-600',
|
1469 |
+
utility: 'bg-rose-600',
|
1470 |
+
platform: 'bg-emerald-600',
|
1471 |
+
media: 'bg-stone-600',
|
1472 |
+
presentation: 'bg-red-500',
|
1473 |
+
audio: 'bg-blue-500',
|
1474 |
+
infrastructure: 'bg-gray-700',
|
1475 |
+
nlp: 'bg-purple-500',
|
1476 |
+
accessibility: 'bg-green-500',
|
1477 |
+
general: 'bg-gray-600',
|
1478 |
+
};
|
1479 |
+
return colors[category] || 'bg-gray-600';
|
1480 |
+
}
|
1481 |
+
function getCategoryBadgeColor(category) {
|
1482 |
+
/* ... (unchanged) ... */
|
1483 |
+
const colors = {
|
1484 |
+
productivity: 'bg-blue-100 text-blue-800',
|
1485 |
+
writing: 'bg-purple-100 text-purple-800',
|
1486 |
+
design: 'bg-pink-100 text-pink-800',
|
1487 |
+
coding: 'bg-green-100 text-green-800',
|
1488 |
+
video: 'bg-red-100 text-red-800',
|
1489 |
+
image: 'bg-yellow-100 text-yellow-800',
|
1490 |
+
education: 'bg-indigo-100 text-indigo-800',
|
1491 |
+
data: 'bg-cyan-100 text-cyan-800',
|
1492 |
+
search: 'bg-teal-100 text-teal-800',
|
1493 |
+
builder: 'bg-orange-100 text-orange-800',
|
1494 |
+
'customer-support': 'bg-lime-100 text-lime-800',
|
1495 |
+
automation: 'bg-sky-100 text-sky-800',
|
1496 |
+
hosting: 'bg-amber-100 text-amber-800',
|
1497 |
+
agents: 'bg-violet-100 text-violet-800',
|
1498 |
+
directory: 'bg-fuchsia-100 text-fuchsia-800',
|
1499 |
+
utility: 'bg-rose-100 text-rose-800',
|
1500 |
+
platform: 'bg-emerald-100 text-emerald-800',
|
1501 |
+
media: 'bg-stone-100 text-stone-800',
|
1502 |
+
presentation: 'bg-red-100 text-red-800',
|
1503 |
+
audio: 'bg-blue-100 text-blue-800',
|
1504 |
+
infrastructure: 'bg-gray-200 text-gray-800',
|
1505 |
+
nlp: 'bg-purple-100 text-purple-800',
|
1506 |
+
accessibility: 'bg-green-100 text-green-800',
|
1507 |
+
general: 'bg-gray-100 text-gray-800',
|
1508 |
+
};
|
1509 |
+
return colors[category] || 'bg-gray-100 text-gray-800';
|
1510 |
+
}
|
1511 |
+
function getYouTubeID(url) {
|
1512 |
+
/* ... (unchanged) ... */
|
1513 |
+
if (!url || url === '#') return '';
|
1514 |
+
const match = url.match(
|
1515 |
+
/(?:youtu\.be\/|youtube\.com\/(?:watch\?v=|embed\/|v\/|shorts\/))([^?&\/\s]+)/
|
1516 |
+
);
|
1517 |
+
return match ? match[1] : '';
|
1518 |
+
}
|
1519 |
+
function formatDate(dateString) {
|
1520 |
+
/* ... (unchanged, includes fallback parsing) ... */
|
1521 |
+
if (!dateString) return 'תאריך לא זמין';
|
1522 |
+
try {
|
1523 |
+
const date = new Date(dateString);
|
1524 |
+
if (isNaN(date.getTime())) {
|
1525 |
+
console.warn('Could not parse date directly:', dateString);
|
1526 |
+
const parts = dateString.match(
|
1527 |
+
/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/
|
1528 |
+
);
|
1529 |
+
if (parts) {
|
1530 |
+
const isoDate = new Date(
|
1531 |
+
`${parts[3]}-${parts[2].padStart(2, '0')}-${parts[1].padStart(
|
1532 |
+
2,
|
1533 |
+
'0'
|
1534 |
+
)}T00:00:00Z`
|
1535 |
+
);
|
1536 |
+
if (!isNaN(isoDate.getTime()))
|
1537 |
+
return isoDate.toLocaleDateString('he-IL', {
|
1538 |
+
year: 'numeric',
|
1539 |
+
month: 'long',
|
1540 |
+
day: 'numeric',
|
1541 |
+
});
|
1542 |
+
}
|
1543 |
+
return 'תאריך ��א תקין';
|
1544 |
+
}
|
1545 |
+
return date.toLocaleDateString('he-IL', {
|
1546 |
+
year: 'numeric',
|
1547 |
+
month: 'long',
|
1548 |
+
day: 'numeric',
|
1549 |
+
});
|
1550 |
+
} catch (e) {
|
1551 |
+
console.error('Error formatting date:', dateString, e);
|
1552 |
+
return 'תאריך לא תקין';
|
1553 |
+
}
|
1554 |
+
}
|
1555 |
+
|
1556 |
+
// --- Event Listeners Setup ---
|
1557 |
+
function setupEventListeners() {
|
1558 |
+
// Search input
|
1559 |
+
searchInput.addEventListener('input', (e) => {
|
1560 |
+
currentSearchTerm = e.target.value;
|
1561 |
+
localStorage.setItem('searchTerm', currentSearchTerm); // שמור בזיכרון הדפדפן
|
1562 |
+
renderTools();
|
1563 |
+
});
|
1564 |
+
|
1565 |
+
// Filter buttons
|
1566 |
+
filterButtons.forEach((button) => {
|
1567 |
+
button.addEventListener('click', () => {
|
1568 |
+
filterButtons.forEach((btn) => btn.classList.remove('active'));
|
1569 |
+
button.classList.add('active');
|
1570 |
+
currentCategory = button.dataset.category;
|
1571 |
+
renderTools();
|
1572 |
+
});
|
1573 |
+
});
|
1574 |
+
|
1575 |
+
// Mobile menu toggle
|
1576 |
+
mobileMenuButton.addEventListener('click', () => {
|
1577 |
+
mobileMenu.classList.toggle('open');
|
1578 |
+
});
|
1579 |
+
|
1580 |
+
// Uncomment if using admin buttons
|
1581 |
+
const editJsonBtn = document.getElementById('editJsonBtn');
|
1582 |
+
const editJsonBtnMobile = document.getElementById('editJsonBtnMobile');
|
1583 |
+
document
|
1584 |
+
.getElementById('editJsonBtnFooter')
|
1585 |
+
?.addEventListener('click', openEditorHandler);
|
1586 |
+
|
1587 |
+
if (editJsonBtn)
|
1588 |
+
editJsonBtn.addEventListener('click', openEditorHandler);
|
1589 |
+
if (editJsonBtnMobile)
|
1590 |
+
editJsonBtnMobile.addEventListener('click', openEditorHandler);
|
1591 |
+
|
1592 |
+
closeModalBtn.addEventListener('click', () =>
|
1593 |
+
jsonEditorModal.classList.add('hidden')
|
1594 |
+
);
|
1595 |
+
cancelEditBtn.addEventListener('click', () =>
|
1596 |
+
jsonEditorModal.classList.add('hidden')
|
1597 |
+
);
|
1598 |
+
|
1599 |
+
// JSON Editor Save Button -> Saves ONLY to localStorage for the current session
|
1600 |
+
saveJsonBtn.addEventListener('click', () => {
|
1601 |
+
try {
|
1602 |
+
const rawData = JSON.parse(jsonEditor.value);
|
1603 |
+
if (!Array.isArray(rawData))
|
1604 |
+
throw new Error('Data must be an array.');
|
1605 |
+
if (showToolsBtn.classList.contains('bg-blue-600')) {
|
1606 |
+
// Update in-memory data and sort
|
1607 |
+
toolsData.tools = rawData.map((tool) => ({
|
1608 |
+
/* add defaults */ ...tool,
|
1609 |
+
rating: tool.rating ?? 0,
|
1610 |
+
isNew: tool.isNew ?? false,
|
1611 |
+
category: tool.category ?? 'general',
|
1612 |
+
icon: tool.icon || 'fas fa-tools',
|
1613 |
+
url: tool.url || '#',
|
1614 |
+
description: tool.description || 'אין תיאור זמין.',
|
1615 |
+
name: tool.name || 'שם לא ידוע',
|
1616 |
+
}));
|
1617 |
+
sortTools(currentSort);
|
1618 |
+
} else {
|
1619 |
+
toolsData.videos = rawData.map((video) => ({
|
1620 |
+
/* add defaults */ ...video,
|
1621 |
+
url: video.url || '#',
|
1622 |
+
title: video.title || 'כותרת חסרה',
|
1623 |
+
description: video.description || 'אין תיאור זמין.',
|
1624 |
+
date: video.date ?? new Date().toISOString(),
|
1625 |
+
}));
|
1626 |
+
}
|
1627 |
+
// Save the edited data to localStorage (will be lost on next full load)
|
1628 |
+
saveData();
|
1629 |
+
// Re-render the UI with the edited data for the current session
|
1630 |
+
renderTools();
|
1631 |
+
renderVideos();
|
1632 |
+
updateStats();
|
1633 |
+
jsonEditorModal.classList.add('hidden');
|
1634 |
+
alert(
|
1635 |
+
'הנתונים נשמרו זמנית (באחסון המקומי). הם יתעדכנו מחדש מהשרת בטעינה הבאה של הדף.'
|
1636 |
+
);
|
1637 |
+
} catch (e) {
|
1638 |
+
alert('JSON לא תקין או שגיאה בשמירה:\n' + e.message);
|
1639 |
+
console.error('JSON Save Error:', e);
|
1640 |
+
}
|
1641 |
+
});
|
1642 |
+
|
1643 |
+
showToolsBtn.addEventListener('click', () => {
|
1644 |
+
/* ... (unchanged editor tab logic) ... */
|
1645 |
+
showToolsBtn.classList.add('bg-blue-600', 'text-white');
|
1646 |
+
showToolsBtn.classList.remove('bg-gray-200', 'text-gray-700');
|
1647 |
+
showVideosBtn.classList.add('bg-gray-200', 'text-gray-700');
|
1648 |
+
showVideosBtn.classList.remove('bg-blue-600', 'text-white');
|
1649 |
+
jsonEditor.value = JSON.stringify(toolsData.tools, null, 2); // Show current in-memory tools data
|
1650 |
+
});
|
1651 |
+
showVideosBtn.addEventListener('click', () => {
|
1652 |
+
/* ... (unchanged editor tab logic) ... */
|
1653 |
+
showVideosBtn.classList.add('bg-blue-600', 'text-white');
|
1654 |
+
showVideosBtn.classList.remove('bg-gray-200', 'text-gray-700');
|
1655 |
+
showToolsBtn.classList.add('bg-gray-200', 'text-gray-700');
|
1656 |
+
showToolsBtn.classList.remove('bg-blue-600', 'text-white');
|
1657 |
+
jsonEditor.value = JSON.stringify(toolsData.videos, null, 2); // Show current in-memory videos data
|
1658 |
+
});
|
1659 |
+
|
1660 |
+
// Sorting stat boxes (Unchanged)
|
1661 |
+
if (topRatedStatBox) {
|
1662 |
+
topRatedStatBox.addEventListener('click', () => {
|
1663 |
+
sortTools('rating');
|
1664 |
+
renderTools();
|
1665 |
+
scrollToTools(); // גלילה חלקה לתחילת רשימת הכלים
|
1666 |
+
});
|
1667 |
+
}
|
1668 |
+
|
1669 |
+
if (newToolsStatBox) {
|
1670 |
+
newToolsStatBox.addEventListener('click', () => {
|
1671 |
+
sortTools('newest');
|
1672 |
+
renderTools();
|
1673 |
+
scrollToTools(); // גלילה חלקה לתחילת רשימת הכלים
|
1674 |
+
});
|
1675 |
+
}
|
1676 |
+
|
1677 |
+
// Refresh buttons - Now primarily resets filters/sort/search and re-renders current data
|
1678 |
+
// It *could* re-fetch, but init() already does that on load.
|
1679 |
+
// Let's make it just reset the view state.
|
1680 |
+
const resetViewHandler = () => {
|
1681 |
+
console.log('Resetting view state (filters, sort, search)...');
|
1682 |
+
// Reset filters and search
|
1683 |
+
searchInput.value = '';
|
1684 |
+
currentSearchTerm = '';
|
1685 |
+
filterButtons.forEach((btn) => btn.classList.remove('active'));
|
1686 |
+
const allFilterBtn = document.querySelector(
|
1687 |
+
'.filter-btn[data-category="all"]'
|
1688 |
+
);
|
1689 |
+
if (allFilterBtn) allFilterBtn.classList.add('active');
|
1690 |
+
currentCategory = 'all';
|
1691 |
+
|
1692 |
+
// Reset sort to newest and re-render
|
1693 |
+
sortTools('newest');
|
1694 |
+
renderTools();
|
1695 |
+
// No need to re-render videos unless their source changes, which this button doesn't do
|
1696 |
+
// No need to update stats as the underlying data hasn't changed
|
1697 |
+
alert('התצוגה אופסה (פילטרים, מיון וחיפוש נוקו).');
|
1698 |
+
};
|
1699 |
+
|
1700 |
+
refreshBtn.addEventListener('click', resetViewHandler);
|
1701 |
+
refreshBtnMobile.addEventListener('click', resetViewHandler);
|
1702 |
+
}
|
1703 |
+
|
1704 |
+
// --- Initialize the app ---
|
1705 |
+
document.addEventListener('DOMContentLoaded', init);
|
1706 |
+
|
1707 |
+
// JSON Editor Modal Logic (If admin buttons are enabled)
|
1708 |
+
const openEditorHandler = () => {
|
1709 |
+
document.getElementById('suggestToolModal').classList.remove('hidden');
|
1710 |
+
};
|
1711 |
+
|
1712 |
+
const closeSuggestModal = () => {
|
1713 |
+
document.getElementById('suggestToolModal').classList.add('hidden');
|
1714 |
+
};
|
1715 |
+
|
1716 |
+
document
|
1717 |
+
.getElementById('suggestToolForm')
|
1718 |
+
.addEventListener('submit', async (e) => {
|
1719 |
+
e.preventDefault();
|
1720 |
+
const form = e.target;
|
1721 |
+
const rawPhone = form.userPhone.value;
|
1722 |
+
const cleanedPhone = rawPhone.replace(/\D/g, ''); // מסיר כל תו שאינו ספרה
|
1723 |
+
// alert(cleanedPhone)
|
1724 |
+
const data = {
|
1725 |
+
name: form.name.value,
|
1726 |
+
url: form.url.value,
|
1727 |
+
description: form.description.value,
|
1728 |
+
userName: form.userName.value,
|
1729 |
+
userPhone: cleanedPhone,
|
1730 |
+
};
|
1731 |
+
|
1732 |
+
try {
|
1733 |
+
await fetch(
|
1734 |
+
'https://hook.eu2.make.com/lgo6nh36dk804dq1msfmwxo34nzf4o3y',
|
1735 |
+
{
|
1736 |
+
method: 'POST',
|
1737 |
+
headers: {
|
1738 |
+
'Content-Type': 'application/json',
|
1739 |
+
},
|
1740 |
+
body: JSON.stringify(data),
|
1741 |
+
}
|
1742 |
+
);
|
1743 |
+
|
1744 |
+
alert('הכלי נשלח בהצלחה!');
|
1745 |
+
closeSuggestModal();
|
1746 |
+
form.reset();
|
1747 |
+
} catch (err) {
|
1748 |
+
alert('שגיאה בשליחה 😢');
|
1749 |
+
console.error(err);
|
1750 |
+
}
|
1751 |
+
});
|
1752 |
+
function openVideoModal(url) {
|
1753 |
+
const modal = document.getElementById('videoModal');
|
1754 |
+
const iframe = document.getElementById('videoIframe');
|
1755 |
+
iframe.src = url;
|
1756 |
+
modal.classList.remove('hidden');
|
1757 |
+
}
|
1758 |
+
|
1759 |
+
function closeVideoModal() {
|
1760 |
+
const modal = document.getElementById('videoModal');
|
1761 |
+
const iframe = document.getElementById('videoIframe');
|
1762 |
+
iframe.src = '';
|
1763 |
+
modal.classList.add('hidden');
|
1764 |
+
}
|
1765 |
+
fetch('tools.json')
|
1766 |
+
.then((res) => res.json())
|
1767 |
+
.then((tools) => {
|
1768 |
+
const count = tools.length;
|
1769 |
+
document.getElementById(
|
1770 |
+
'toolsCount'
|
1771 |
+
).textContent = `${count} כלים זמינים`;
|
1772 |
+
})
|
1773 |
+
.catch((err) => {
|
1774 |
+
console.error('שגיאה בטעינת כמות הכלים:', err);
|
1775 |
+
document.getElementById('toolsCount').textContent = 'טעינה נכשלה';
|
1776 |
+
});
|
1777 |
+
function showNewToolBanner() {
|
1778 |
+
const tools = toolsData.tools;
|
1779 |
+
const lastSeenToolDate = localStorage.getItem('lastSeenToolDate');
|
1780 |
+
const newTools = tools.filter((tool) => tool.isNew);
|
1781 |
+
if (newTools.length === 0) return;
|
1782 |
+
|
1783 |
+
const latestTool = newTools.reduce((latest, tool) => {
|
1784 |
+
return new Date(tool.dateAdded) > new Date(latest.dateAdded)
|
1785 |
+
? tool
|
1786 |
+
: latest;
|
1787 |
+
}, newTools[0]);
|
1788 |
+
|
1789 |
+
if (
|
1790 |
+
!lastSeenToolDate ||
|
1791 |
+
new Date(latestTool.dateAdded) > new Date(lastSeenToolDate)
|
1792 |
+
) {
|
1793 |
+
const banner = document.getElementById('newToolBanner');
|
1794 |
+
const toolNameSpan = document.getElementById('newToolName');
|
1795 |
+
const closeBtn = document.getElementById('closeBanner');
|
1796 |
+
|
1797 |
+
toolNameSpan.textContent = latestTool.name;
|
1798 |
+
banner.classList.remove('hidden');
|
1799 |
+
const viewNowLink = banner.querySelector('a');
|
1800 |
+
viewNowLink.addEventListener('click', (e) => {
|
1801 |
+
e.preventDefault();
|
1802 |
+
filteredStatView = 'newTools';
|
1803 |
+
currentCategory = 'all';
|
1804 |
+
currentSearchTerm = '';
|
1805 |
+
renderTools();
|
1806 |
+
scrollToTools();
|
1807 |
+
});
|
1808 |
+
|
1809 |
+
closeBtn.addEventListener('click', () => {
|
1810 |
+
banner.classList.add('hidden');
|
1811 |
+
localStorage.setItem('lastSeenToolDate', latestTool.dateAdded);
|
1812 |
+
});
|
1813 |
+
}
|
1814 |
+
}
|
1815 |
+
|
1816 |
+
if ('serviceWorker' in navigator) {
|
1817 |
+
navigator.serviceWorker
|
1818 |
+
.register('/service-worker.js')
|
1819 |
+
.then(() => console.log('Service Worker registered successfully.'))
|
1820 |
+
.catch((err) =>
|
1821 |
+
console.error('Service Worker registration failed:', err)
|
1822 |
+
);
|
1823 |
+
}
|
1824 |
+
|
1825 |
+
let deferredPrompt;
|
1826 |
+
const installBtn = document.getElementById('installAppBtn');
|
1827 |
+
const container = document.getElementById('installAppContainer');
|
1828 |
+
|
1829 |
+
window.addEventListener('beforeinstallprompt', (e) => {
|
1830 |
+
e.preventDefault();
|
1831 |
+
deferredPrompt = e;
|
1832 |
+
installBtn.style.display = 'inline-block';
|
1833 |
+
|
1834 |
+
installBtn.addEventListener('click', () => {
|
1835 |
+
deferredPrompt.prompt();
|
1836 |
+
deferredPrompt.userChoice.then((choiceResult) => {
|
1837 |
+
if (choiceResult.outcome === 'accepted') {
|
1838 |
+
console.log('User accepted the A2HS prompt');
|
1839 |
+
installBtn.style.display = 'none';
|
1840 |
+
} else {
|
1841 |
+
console.log('User dismissed the A2HS prompt');
|
1842 |
+
}
|
1843 |
+
deferredPrompt = null;
|
1844 |
+
});
|
1845 |
+
});
|
1846 |
+
});
|
1847 |
+
</script>
|
1848 |
+
|
1849 |
+
<!-- /* --------------------------------- */
|
1850 |
+
/* ------- END OF JAVASCRIPT ------- */
|
1851 |
+
/* --------------------------------- */ -->
|
1852 |
+
|
1853 |
+
<script>
|
1854 |
+
function speakText(text) {
|
1855 |
+
const audio = new Audio(
|
1856 |
+
`https://translate.google.com/translate_tts?ie=UTF-8&tl=iw&client=tw-ob&q=${encodeURIComponent(
|
1857 |
+
text
|
1858 |
+
)}`
|
1859 |
+
);
|
1860 |
+
audio.play();
|
1861 |
+
}
|
1862 |
+
</script>
|
1863 |
+
</body>
|
1864 |
+
</html>
|
tools.json
CHANGED
@@ -1,61 +1,73 @@
|
|
1 |
-
[
|
2 |
-
{
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
},
|
15 |
|
16 |
{
|
17 |
"name": "Adobe Firefly",
|
18 |
-
"description": "המערכת של אדובי ליצירת תוכן גרפי מתיאורים
|
19 |
"category": "design",
|
20 |
"url": "https://firefly.adobe.com/",
|
21 |
-
"logo":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Adobe_Firefly_Logo.svg/512px-Adobe_Firefly_Logo.svg.png",
|
22 |
"icon": "fas fa-fire",
|
23 |
-
"rating": 4,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
"isFeatured": false,
|
25 |
"isNew": false
|
26 |
},
|
27 |
{
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
},
|
40 |
-
{
|
41 |
-
"name": "היפוך כיוון תצוגה באתר",
|
42 |
-
"description": "שנו את כיוון התצוגה באתרים בין ימין לשמאל ושמאל לימין בלחיצה אחת! סקריפט JavaScript פשוט שמותאם לסימניה בדפדפן ומאפשר התאמה אישית מהירה של חוויית הגלישה.",
|
43 |
-
"url": "javascript:(function(){var elements=document.getElementsByTagName('*');for(e of elements){if(!e.style)continue;if(!e.style.direction||e.style.direction==='ltr')e.style.direction='rtl';else e.style.direction='ltr';}})()",
|
44 |
-
"logo": "https://www.svgrepo.com/show/358133/right-to-left-text-direction.svg",
|
45 |
-
"category": "utility",
|
46 |
-
"icon": "fas fa-exchange-alt",
|
47 |
-
"video": "https://www.youtube.com/embed/WIrU_3HqaCM?si=SlbyeM1PcwiCiUZm",
|
48 |
-
"isNew": false,
|
49 |
-
"isFeatured": false,
|
50 |
-
"rating": 5
|
51 |
-
},
|
52 |
|
53 |
{
|
54 |
"name": "AI Chatbot",
|
55 |
"description": "פלטפורמה המציעה אינטראקציה עם מודלי שפה מתקדמים כגון GPT-4o, Gemini Pro, DeepSeek, Qwen2.5 ועוד. מאפשרת קבלת תשובות מיידיות, תרגומים, יצירת תמונות באמצעות DALL·E, ושימוש בכלי AI מתקדמים נוספים.",
|
56 |
"category": "ai-agents",
|
57 |
"url": "https://aichatbot.co/",
|
58 |
-
"logo":"https://storage.googleapis.com/ai-chat-website-assets/ai_chatbot_icon_new.webp",
|
59 |
"icon": "fas fa-comments",
|
60 |
"rating": 3,
|
61 |
"isNew": false,
|
@@ -66,7 +78,7 @@
|
|
66 |
"description": "צייר AI שמאפשר ליצור דמויות מאוירות לפי תיאור טקסט. כולל קומיקס, סצנות וסיפורים.",
|
67 |
"category": "image",
|
68 |
"url": "https://app.artflow.ai/auth/register?via=user_tnfw_ibtzq",
|
69 |
-
"logo":"https://ph-files.imgix.net/76af613d-282a-4404-bb7d-fc3955ff8930.png?auto=format",
|
70 |
"video": "https://www.youtube.com/embed/_xIJoXH-Sm4?si=S_l4hfKO0-xa5kPd",
|
71 |
"icon": "fas fa-pencil-alt",
|
72 |
"rating": 4,
|
@@ -78,7 +90,7 @@
|
|
78 |
"description": "פלטפורמה מבוססת בינה מלאכותית המאפשרת יצירת תמונות מותאמות אישית באיכות גבוהה. Astria AI מתמחה באימון מודלים ליצירת דמויות עקביות, מה שהופך אותה לכלי אידיאלי עבור פרויקטים יצירתיים הדורשים ויזואליזציות מדויקות.",
|
79 |
"category": "image",
|
80 |
"url": "https://www.astria.ai/",
|
81 |
-
"logo":"https://www.astria.ai/assets/logo-b4e21f646fb5879eb91113a70eae015a7413de8920960799acb72c60ad4eaa99.png",
|
82 |
"icon": "fas fa-paint-brush",
|
83 |
"rating": 4,
|
84 |
"isNew": false,
|
@@ -100,7 +112,7 @@
|
|
100 |
"description": "פלטפורמת Low-Code המאפשרת למשתמשים ליצור יישומים שלמים ללא צורך בכתיבת קוד. מתאימה למפתחים, מנהלי פרויקטים ואנשי עסקים המעוניינים לפתח פתרונות טכנולוגיים במהירות וביעילות.",
|
101 |
"category": "coding",
|
102 |
"url": "https://app.base44.com/",
|
103 |
-
"logo":"https://app.base44.com/static/media/logo_v3.c1b6fb94b09220cfe957.png",
|
104 |
"icon": "fas fa-cogs",
|
105 |
"rating": 5,
|
106 |
"isNew": false,
|
@@ -108,10 +120,10 @@
|
|
108 |
},
|
109 |
{
|
110 |
"name": "bitly",
|
111 |
-
"description": "קיצור לינקים עם סטטיסטיקות
|
112 |
"category": "utility",
|
113 |
"url": "https://app.bitly.com/",
|
114 |
-
"logo":"https://cdn.worldvectorlogo.com/logos/bitly.svg",
|
115 |
"icon": "fas fa-link",
|
116 |
"rating": 3,
|
117 |
"isNew": false,
|
@@ -119,10 +131,10 @@
|
|
119 |
},
|
120 |
{
|
121 |
"name": "Bubble",
|
122 |
-
"description": "פלטפורמת No-Code מתקדמת לבניית אפליקציות עם יכולות AI
|
123 |
"category": "builder",
|
124 |
"url": "https://bubble.io/",
|
125 |
-
"logo":"https://seeklogo.com/images/B/bubble-icon-logo-90ECCA2A26-seeklogo.com.png",
|
126 |
"icon": "fas fa-puzzle-piece",
|
127 |
"rating": 4,
|
128 |
"isNew": false,
|
@@ -130,10 +142,10 @@
|
|
130 |
},
|
131 |
{
|
132 |
"name": "Canva",
|
133 |
-
"description": "עיצוב גרפי לכל אחד
|
134 |
"category": "design",
|
135 |
"url": "https://www.canva.com/",
|
136 |
-
"logo":"https://static.vecteezy.com/system/resources/previews/032/329/173/non_2x/canva-icon-logo-symbol-free-png.png",
|
137 |
"icon": "fas fa-paint-brush",
|
138 |
"rating": 5,
|
139 |
"isNew": false,
|
@@ -141,33 +153,33 @@
|
|
141 |
},
|
142 |
{
|
143 |
"name": "CapCut",
|
144 |
-
"description": "עריכת וידאו, יצירת תוכן מקצועי ומהיר כולל כלים של AI
|
145 |
"category": "video",
|
146 |
"url": "https://www.capcut.com/",
|
147 |
-
"logo":"https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
148 |
"icon": "fas fa-cut",
|
149 |
"rating": 4,
|
150 |
"isNew": false,
|
151 |
"isFeatured": true
|
152 |
},
|
153 |
{
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
},
|
165 |
{
|
166 |
"name": "ChatGPT",
|
167 |
"description": "מנוע על שאלות בכל הנושאים. נוח מאוד, אינטואיטיבי, זמין דרך ממשק אינטרנט.",
|
168 |
"category": "productivity",
|
169 |
"url": "https://chat.openai.com/",
|
170 |
-
"logo":"https://cdn.freelogovectors.net/svg18/chatgpt-logo-icon-freelogovectors.net.svg",
|
171 |
"video": "https://www.youtube.com/embed/Jml_LSMZLKY?si=Uj_yn5NCbFIcPu8V",
|
172 |
"icon": "fas fa-comment-dots",
|
173 |
"rating": 5,
|
@@ -179,7 +191,7 @@
|
|
179 |
"description": "עוזר AI מתקדם המשלב את מיטב מודלי השפה הגדולים (LLMs) כגון GPT-4o, Sonnet-3.5, Gemini 2.0 ועוד. מאפשר אינטראקציות טבעיות, יצירת תמונות, ניתוח מסמכים, ביצוע קוד, ויצירת צ'אטבוטים מותאמים אישית.",
|
180 |
"category": "ai-agents",
|
181 |
"url": "https://chatllm.abacus.ai/",
|
182 |
-
"logo":"https://play-lh.googleusercontent.com/O35u7LcmgKHsRpEQvHmT9ACfvDvP5S6HRIVmz-x-spUhojXIcnk0wbMEqaBSWPUJYQ",
|
183 |
"icon": "fas fa-robot",
|
184 |
"rating": 3,
|
185 |
"isNew": false,
|
@@ -190,7 +202,7 @@
|
|
190 |
"description": "מאגר עצום של מודלים מותאמים ליצירת דמויות, ציורים, סטיילים ועוד. תומך ב-Stable Diffusion.",
|
191 |
"category": "image",
|
192 |
"url": "https://civitai.com/",
|
193 |
-
"logo":"https://images.seeklogo.com/logo-png/61/1/civitai-logo-png_seeklogo-611578.png",
|
194 |
"icon": "fas fa-draw-polygon",
|
195 |
"rating": 4,
|
196 |
"isNew": false,
|
@@ -198,7 +210,7 @@
|
|
198 |
},
|
199 |
{
|
200 |
"name": "Claude",
|
201 |
-
"description": "מנוע על מבית Anthropic
|
202 |
"category": "productivity",
|
203 |
"url": "https://claude.ai/",
|
204 |
"icon": "fas fa-comments",
|
@@ -212,7 +224,7 @@
|
|
212 |
"description": "כלי עריכת וידאו של מיקרוסופט, נוח מאוד לתלמידים, אנשי שיווק ויוצרים. ללא צורך בהתקנה.",
|
213 |
"category": "video",
|
214 |
"url": "https://app.clipchamp.com/",
|
215 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR81_ndwospsGSvQqM5ti20GWqmm8339DzTrA&s",
|
216 |
"icon": "fas fa-edit",
|
217 |
"rating": 4,
|
218 |
"isNew": false,
|
@@ -223,18 +235,18 @@
|
|
223 |
"description": "כלי עריכה גרפית מבוסס AI להסרת רקעים, תיקונים, שדרוג תמונות ויצירת מצגות תוך שניות.",
|
224 |
"category": "design",
|
225 |
"url": "https://clipdrop.co/",
|
226 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTRgJAfeml_EeutvGpqDeitadivy7xh82FYmg&s",
|
227 |
"icon": "fas fa-crop-alt",
|
228 |
-
"rating":
|
229 |
"isNew": false,
|
230 |
"isFeatured": false
|
231 |
},
|
232 |
{
|
233 |
"name": "Cohere",
|
234 |
-
"description": "חברה קנדית שמספקת פתרונות מבוססי LLMs
|
235 |
"category": "nlp",
|
236 |
"url": "http://www.cohere.ai/",
|
237 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1wV4vA35_T8iDmQk-TdF7Kbl9-ycmdOY18Q&s",
|
238 |
"icon": "fas fa-language",
|
239 |
"rating": 4,
|
240 |
"isNew": false,
|
@@ -242,10 +254,10 @@
|
|
242 |
},
|
243 |
{
|
244 |
"name": "Comfy UI",
|
245 |
-
"description": "מערכת גרפית ליצירת תמונות באמצעות Stable Diffusion
|
246 |
"category": "image",
|
247 |
"url": "https://github.com/comfyanonymous/ComfyUI",
|
248 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzHZSy0ZhkpEPJ-X11wdZ9wnidA0FkPPW7Hw&s",
|
249 |
"icon": "fas fa-project-diagram",
|
250 |
"rating": 4,
|
251 |
"isNew": false,
|
@@ -256,9 +268,9 @@
|
|
256 |
"description": "מוטמע במוצרי מיקרוסופט ונותן הצעות קוד בזמן אמת. תומך ב-Edge, ב-Word, וב-Excel. פשוט תענוג.",
|
257 |
"category": "coding",
|
258 |
"url": "https://copilot.microsoft.com/",
|
259 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXa8C3fWi-xW4UuDNZ0IlmPoLtQxizyutfUA&s",
|
260 |
"icon": "fas fa-code",
|
261 |
-
"rating":
|
262 |
"isNew": false,
|
263 |
"isFeatured": false
|
264 |
},
|
@@ -267,7 +279,7 @@
|
|
267 |
"description": "פלטפורמה המאפשרת יצירת מוצרים דיגיטליים ללא הגבלות, כולל אתרים ואפליקציות מובייל, עם אינטגרציות ל-Supabase ו-ChatGPT, ותמיכה בפרויקטים פרטיים.",
|
268 |
"category": "builder",
|
269 |
"url": "https://getcreatr.com/",
|
270 |
-
"logo":"https://getcreatr.com/apple-touch-icon.png",
|
271 |
"icon": "fas fa-tools",
|
272 |
"rating": 4,
|
273 |
"isNew": false,
|
@@ -278,9 +290,9 @@
|
|
278 |
"description": "יצירת וידאו עם דמויות מדברות מתמונה סטטית. אידיאלי למצגות, הדרכות ושיווק אישי.",
|
279 |
"category": "video",
|
280 |
"url": "https://www.d-id.com/",
|
281 |
-
"logo":"https://allvectorlogo.com/img/2023/06/d-id-ltd-logo-vector.png",
|
282 |
"icon": "fas fa-image",
|
283 |
-
"rating":
|
284 |
"isNew": false,
|
285 |
"isFeatured": false
|
286 |
},
|
@@ -289,20 +301,20 @@
|
|
289 |
"description": "מערכת AI שיוצרת תמונות ואומנות מתיאורים בשפה טבעית.",
|
290 |
"category": "design",
|
291 |
"url": "https://openai.com/dall-e-2",
|
292 |
-
"logo":"https://a.storyblok.com/f/165154/1280x720/6326998665/03_dall-e-logo.png/m/",
|
293 |
"icon": "fas fa-palette",
|
294 |
-
"rating":
|
295 |
"isNew": false,
|
296 |
"isFeatured": false
|
297 |
},
|
298 |
{
|
299 |
"name": "Deep Learning AI",
|
300 |
-
"description": "הבית של אנדרו נג ולמידת מכונה
|
301 |
"category": "education",
|
302 |
"url": "https://deeplearning.ai/",
|
303 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQjqenriFknhB2bXwXOAYGaMKLfyCAIS72hw&s",
|
304 |
"icon": "fas fa-graduation-cap",
|
305 |
-
"rating":
|
306 |
"isNew": false,
|
307 |
"isFeatured": false
|
308 |
},
|
@@ -322,7 +334,7 @@
|
|
322 |
"description": "עורך תמונות מבוסס AI ליצירת סצנות מדהימות מדימיון. מתאים גם לוידאו, קומיקס ודמויות.",
|
323 |
"category": "image",
|
324 |
"url": "https://domoai.app/",
|
325 |
-
"logo":"https://www.domoai.app/apple-touch-icon.png",
|
326 |
"icon": "fas fa-image",
|
327 |
"rating": 4,
|
328 |
"isNew": false,
|
@@ -333,30 +345,30 @@
|
|
333 |
"description": "פלטפורמה מבוססת דפדפן המאפשרת ליוצרים להמיר קבצי אודיו לסרטוני וידאו מרהיבים, עם אפשרויות התאמה אישית של ויזואליזציות, כתוביות, אפקטים ואלמנטים נוספים.",
|
334 |
"category": "video",
|
335 |
"url": "https://echowave.io/",
|
336 |
-
"logo":"https://images.g2crowd.com/uploads/product/image/large_detail/large_detail_72b8309e6df73ca07f3eafaa13a5551d/echowave.jpg",
|
337 |
"icon": "fas fa-video",
|
338 |
"rating": 4,
|
339 |
"isNew": false,
|
340 |
"isFeatured": false
|
341 |
},
|
342 |
{
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
},
|
354 |
{
|
355 |
"name": "Excalidraw",
|
356 |
"description": "כלי חינמי וקליל ליצירת תרשימים בסגנון לוח מחיק. אני משתמש בו במהלך שיחות ZOOM להעברת רעיונות מורכבים באמצעות המחשה חזותית. הממשק הפשוט מאפשר שרטוט בזמן אמת, מה שהופך את התקשורת ליעילה וברורה יותר.",
|
357 |
"category": "design",
|
358 |
"url": "https://excalidraw.com/",
|
359 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQq2ajzRVwegPBvZdvi3s6BhZCfEenv_F_lgg&s",
|
360 |
"icon": "fas fa-pencil-alt",
|
361 |
"rating": 4,
|
362 |
"isNew": false,
|
@@ -367,7 +379,7 @@
|
|
367 |
"description": "כלי המאפשר החלפת פנים בתמונות, סרטונים ו-GIFs.",
|
368 |
"category": "image",
|
369 |
"url": "https://fakeface.io/",
|
370 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSH5bntcSE9Vmc1QrYp2ZVO8Ibs_Wemz5dtDw&s",
|
371 |
"icon": "fas fa-exchange-alt",
|
372 |
"rating": 3,
|
373 |
"isNew": false,
|
@@ -375,10 +387,10 @@
|
|
375 |
},
|
376 |
{
|
377 |
"name": "Face to All SDXL",
|
378 |
-
"description": "המרת פנים קיימות לדמויות AI
|
379 |
"category": "image",
|
380 |
"url": "https://huggingface.co/spaces/multimodalart/face-to-all",
|
381 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
382 |
"video": "https://www.youtube.com/embed/4HyZAlgGe08?si=HWOO7sBKBcp9b-Bl",
|
383 |
"icon": "fas fa-smile ",
|
384 |
"rating": 5,
|
@@ -387,12 +399,12 @@
|
|
387 |
},
|
388 |
{
|
389 |
"name": "FaceFusion",
|
390 |
-
"description": "כלי פשוט למיזוג פנים בין תמונות או בין אנשים
|
391 |
"category": "video",
|
392 |
"url": "https://facefusion.io/",
|
393 |
-
"logo":"https://avatars.githubusercontent.com/u/142538020?s=48&v=4",
|
394 |
"icon": "fas fa-user-friends",
|
395 |
-
"rating":
|
396 |
"isNew": false,
|
397 |
"isFeatured": false
|
398 |
},
|
@@ -401,7 +413,7 @@
|
|
401 |
"description": "פלטפורמת מדיה גנרטיבית למפתחים, המציעה אימון מהיר של מודלים כמו Flux ליצירת דמויות עקביות באמצעות טכניקת LoRA. מאפשרת התאמה אישית של מודלים קיימים לצרכים ספציפיים, עם יכולת לאימון סגנונות או דמויות בפחות מ-5 דקות.",
|
402 |
"category": "platform",
|
403 |
"url": "https://fal.ai/",
|
404 |
-
"logo":"https://fal.ai/favicon.png",
|
405 |
"icon": "fas fa-brain",
|
406 |
"rating": 4,
|
407 |
"isNew": false,
|
@@ -409,10 +421,10 @@
|
|
409 |
},
|
410 |
{
|
411 |
"name": "Fast Bots",
|
412 |
-
"description": "בוטים מהירים עם AI מובנה
|
413 |
"category": "customer-support",
|
414 |
"url": "https://fastbots.ai/",
|
415 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0MQSOQD5ANxtl8jP7jIbTx2RUeNEkn7Fo8g&s",
|
416 |
"icon": "fas fa-robot",
|
417 |
"rating": 4,
|
418 |
"isNew": false,
|
@@ -423,18 +435,18 @@
|
|
423 |
"description": "פלטפורמה הממירה הקלטות פגישות לטקסט במהירות ובדיוק גבוהים. מאפשרת חיפוש מתקדם בתוך הטקסטים המתועדים, אינטגרציה עם אפליקציות שיתוף פעולה נפוצות, ומעקב אחר מטרות ומשימות שנקבעו בפגישה.",
|
424 |
"category": "productivity",
|
425 |
"url": "https://fireflies.ai/",
|
426 |
-
"logo":"https://lh3.googleusercontent.com/KkVwBKtOvxgeFVQjW1pp6N_yfY46aZ5E3oQVc1bUrVaFjCBon4CBSOVTFwz2JEEM4H4",
|
427 |
"icon": "fas fa-microphone-alt",
|
428 |
-
"rating":
|
429 |
"isNew": false,
|
430 |
"isFeatured": false
|
431 |
},
|
432 |
{
|
433 |
"name": "Flowise ai",
|
434 |
-
"description": "Low-code לבניית אפליקציות AI עם זרימות עבודה גרפיות
|
435 |
"category": "builder",
|
436 |
"url": "https://flowiseai.com/",
|
437 |
-
"logo":"https://api.pxstudio.pw/uploads/flowise_logo_dark_6c1a356f4868d3deb7864323ff93a0fa_2563a9c0fd.png",
|
438 |
"icon": "fas fa-diagram-project",
|
439 |
"rating": 4,
|
440 |
"isNew": false,
|
@@ -442,10 +454,10 @@
|
|
442 |
},
|
443 |
{
|
444 |
"name": "Gamma",
|
445 |
-
"description": "יצירת מצגות תוך שניות בעזרת AI
|
446 |
"category": "presentation",
|
447 |
"url": "https://gamma.app/",
|
448 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDRVr9QYTxtd8eXUP34HZLoEnTNMKG1ffIAg&s",
|
449 |
"icon": "fas fa-chalkboard-teacher",
|
450 |
"rating": 5,
|
451 |
"isNew": false,
|
@@ -453,10 +465,10 @@
|
|
453 |
},
|
454 |
{
|
455 |
"name": "Gemini",
|
456 |
-
"description": "הצ'אטבוט של גוגל
|
457 |
"category": "productivity",
|
458 |
"url": "https://gemini.google.com/",
|
459 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTuy9ucswKvd8dPqg9CvrmJiEH5ngED9xLgrQ&s",
|
460 |
"icon": "fas fa-brain",
|
461 |
"rating": 4,
|
462 |
"isNew": false,
|
@@ -467,7 +479,7 @@
|
|
467 |
"description": "פלטפורמת AI המאפשרת למשתמשים להלביש ולהנפיש תמונות שהעלו, לצד מגוון רחב של כלים איכותיים נוספים. השימוש מוגבל בטוקנים.",
|
468 |
"category": "design",
|
469 |
"url": "https://www.genspark.ai/",
|
470 |
-
"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",
|
471 |
"icon": "fas fa-pen-nib",
|
472 |
"rating": 4,
|
473 |
"isNew": false,
|
@@ -478,7 +490,7 @@
|
|
478 |
"description": "מערכת AI לסיכום תוכן, חיפוש מתקדם והמלצות מתוך המסמכים שלך ב-GitBook. מצוין לצוותי תוכן ודוקומנטציה.",
|
479 |
"category": "productivity",
|
480 |
"url": "https://docs.gitbook.com/content-editor/searching-your-content/gitbook-ai",
|
481 |
-
"logo":"https://gitbook.gallerycdn.vsassets.io/extensions/gitbook/gitbook-vscode/0.1.0/1728856836197/Microsoft.VisualStudio.Services.Icons.Default",
|
482 |
"icon": "fas fa-book",
|
483 |
"rating": 4,
|
484 |
"isNew": false,
|
@@ -489,18 +501,18 @@
|
|
489 |
"description": "עוזר תכנות חכם שמציע קוד ופונקציות שלמות בזמן אמת.",
|
490 |
"category": "coding",
|
491 |
"url": "https://github.com/features/copilot",
|
492 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRA_84-WS_nHtqLPnuvyLEAR17zFDRFuD-7yQ&s",
|
493 |
"icon": "fas fa-code",
|
494 |
-
"rating":
|
495 |
"isNew": false,
|
496 |
"isFeatured": false
|
497 |
},
|
498 |
{
|
499 |
"name": "Glif",
|
500 |
-
"description": "מערכת המרה של תסריטים לטמפלטים ויזואליים
|
501 |
"category": "video",
|
502 |
"url": "https://glif.app/glifs",
|
503 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKttfNsQxQE3HuoPkuiycsbvQcjv-SaFiIRw&s",
|
504 |
"icon": "fas fa-book-open",
|
505 |
"rating": 4,
|
506 |
"isNew": false,
|
@@ -511,7 +523,7 @@
|
|
511 |
"description": "פלטפורמה מקוונת המאפשרת למשתמשים ליצור, לערוך ולשתף יישומי ווב בצורה קלה ומהירה. מציעה סביבה ידידותית למתחילים ולמפתחים מנוסים, עם אפשרות ל'רמיקס' פרויקטים קיימים ולהתאימם לצרכים אישיים.",
|
512 |
"category": "builder",
|
513 |
"url": "https://glitch.com/",
|
514 |
-
"logo":"https://p1.hiclipart.com/preview/42/203/660/fish-glitch-computer-software-email-stack-overflow-trello-company-firebase-png-clipart.jpg",
|
515 |
"icon": "fas fa-code",
|
516 |
"rating": 2,
|
517 |
"isNew": false,
|
@@ -519,12 +531,12 @@
|
|
519 |
},
|
520 |
{
|
521 |
"name": "GoEnhance",
|
522 |
-
"description": "כלי לשיפור סאונד ויזואלי של סרטונים באמצעות AI
|
523 |
"category": "video",
|
524 |
"url": "https://www.goenhance.ai/?aff=sagibaron",
|
525 |
-
"logo":"https://cdn-1.webcatalog.io/catalog/goenhance/goenhance-icon-filled-256.webp?v=1719385542423",
|
526 |
"icon": "fas fa-video",
|
527 |
-
"rating":
|
528 |
"isNew": false,
|
529 |
"isFeatured": false
|
530 |
},
|
@@ -533,7 +545,7 @@
|
|
533 |
"description": "פלטפורמה חינמית מבית גוגל המנגישה גרסאות מתקדמות וניסיוניות של מודל הבינה המלאכותית Gemini. מאפשרת למשתמשים ללא ידע מוקדם להתנסות בתמלול סרטים, ניתוח קבצי וידאו, סיכומי תוכן, ואף מספקת עוזר קולי המדריך את ��משתמשים במשימות שונות.",
|
534 |
"category": "AI Tools",
|
535 |
"url": "https://aistudio.google.com/",
|
536 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvr3EyhGPtM5HKhe6wz98i_xbcq1-IVmIfAcFRR-OQXCaDtD-cniUT3qlkemNQ1mgMHMA&usqp=CAU",
|
537 |
"icon": "fas fa-robot",
|
538 |
"rating": 5,
|
539 |
"isNew": false,
|
@@ -544,7 +556,7 @@
|
|
544 |
"description": "איך ליצור סוכן מבוסס GPT בהתאמה אישית באמצעות OpenAI.",
|
545 |
"category": "productivity",
|
546 |
"url": "https://chatgpt.com/gpts",
|
547 |
-
"logo":"https://static.vecteezy.com/system/resources/previews/021/059/827/non_2x/chatgpt-logo-chat-gpt-icon-on-white-background-free-vector.jpg",
|
548 |
"video": "https://www.youtube.com/embed/iSIWAGgUIcg",
|
549 |
"icon": "fas fa-robot",
|
550 |
"rating": 5,
|
@@ -552,23 +564,23 @@
|
|
552 |
"isFeatured": true
|
553 |
},
|
554 |
{
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
},
|
566 |
{
|
567 |
"name": "Groq",
|
568 |
"description": "חברה טכנולוגית המתמקדת במתן פתרונות בתחום הבינה המלאכותית, עם דגש על ביצועי אינפרנס מהירים. פיתחה מעבד ייחודי בשם LPU (Language Processing Unit) המותאם לעיבוד יעיל של מודלים גדולים, תוך שמירה על צריכת אנרגיה מופחתת.",
|
569 |
"category": "infrastructure",
|
570 |
"url": "https://groq.com/",
|
571 |
-
"logo":"https://logowik.com/content/uploads/images/groq-ai-icon8580.logowik.com.webp",
|
572 |
"icon": "fas fa-microchip",
|
573 |
"rating": 5,
|
574 |
"isNew": false,
|
@@ -579,7 +591,7 @@
|
|
579 |
"description": "כלי כתיבה אוטומטי שעוזר ביצירת תוכן שיווקי.",
|
580 |
"category": "writing",
|
581 |
"url": "https://www.copy.ai",
|
582 |
-
"logo":"https://pbs.twimg.com/profile_images/1882909654545551360/QPAmppjU_400x400.jpg",
|
583 |
"icon": "fas fa-keyboard",
|
584 |
"rating": 3,
|
585 |
"isNew": false,
|
@@ -587,10 +599,10 @@
|
|
587 |
},
|
588 |
{
|
589 |
"name": "HappyScribe",
|
590 |
-
"description": "תמלול אודיו ווידאו
|
591 |
"category": "writing",
|
592 |
"url": "https://www.happyscribe.com/",
|
593 |
-
"logo":"https://www.happyscribe.com/favicon/redesign/favicon-32x32.png",
|
594 |
"icon": "fas fa-file-audio",
|
595 |
"rating": 4,
|
596 |
"isNew": false,
|
@@ -598,10 +610,10 @@
|
|
598 |
},
|
599 |
{
|
600 |
"name": "Hedra",
|
601 |
-
"description": "כלי ליצירת דמויות מדברות מטקסט (כולל ליפסינק) עם שליטה קולית ושפתית
|
602 |
"category": "video",
|
603 |
"url": "https://www.hedra.com/",
|
604 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpTfbFaKEsInHfE3bdtHBFOGgNueOfi4IbXw&s",
|
605 |
"icon": "fas fa-user-alt",
|
606 |
"rating": 4,
|
607 |
"isNew": false,
|
@@ -612,7 +624,7 @@
|
|
612 |
"description": "יצירת אוואטרים מדברים מטקסט (��יפסינק), כולל שינוי שפה וסגנון. מתאים ליצירת סרטוני תדמית אישיים.",
|
613 |
"category": "video",
|
614 |
"url": "https://app.heygen.com/",
|
615 |
-
"logo":"https://app.heygen.com/favicon.ico",
|
616 |
"icon": "fas fa-user-circle",
|
617 |
"rating": 5,
|
618 |
"isNew": false,
|
@@ -623,9 +635,9 @@
|
|
623 |
"description": "פלטפורמת בינה מלאכותית המאפשרת יצירת סרטונים עם תנועות מצלמה קולנועיות, ללא צורך בציוד צילום. מציעה מעל 50 תנועות מצלמה מוכנות מראש, כולל 'Bullet Time' ו-'Dolly Zoom', ליצירת תוכן ויזואלי מרשים בקלות.",
|
624 |
"category": "video",
|
625 |
"url": "https://higgsfield.ai/",
|
626 |
-
"logo":"https://higgsfield.ai/favicon.ico",
|
627 |
"icon": "fas fa-video",
|
628 |
-
"rating":
|
629 |
"isNew": false,
|
630 |
"isFeatured": false
|
631 |
},
|
@@ -634,7 +646,7 @@
|
|
634 |
"description": "אירוח אתרים במחירים נוחים, עם ביצועים טובים, SSL חינם, ממשק קל וניהול WordPress מהיר.",
|
635 |
"category": "hosting",
|
636 |
"url": "https://www.hostinger.com/",
|
637 |
-
"logo":"https://cdn.worldvectorlogo.com/logos/hostinger.svg",
|
638 |
"icon": "fas fa-server",
|
639 |
"rating": 4,
|
640 |
"isNew": false,
|
@@ -645,9 +657,9 @@
|
|
645 |
"description": "הבית של מודלים מבוססי AI, כולל קוד פתוח, דוגמאות לשימוש, וקהילה ענקית.",
|
646 |
"category": "platform",
|
647 |
"url": "https://huggingface.co/",
|
648 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
649 |
"icon": "fas fa-hands-helping",
|
650 |
-
"rating":
|
651 |
"isNew": false,
|
652 |
"isFeatured": true
|
653 |
},
|
@@ -656,18 +668,18 @@
|
|
656 |
"description": "חברת Hume פיתחה את EVI, ממשק קול אמפתי המבוסס על בינה מלאכותית, המאפשר אינטראקציות קוליות טבעיות ומגיב בהתאם לרגשות המשתמש. EVI מזהה את טון הדיבור של המשתמש ומתאימה את תגובותיה בהתאם, מה שהופך את התקשורת עם AI לאנושית ומובנת יותר.",
|
657 |
"category": "ai-agents",
|
658 |
"url": "http://hume.ai/",
|
659 |
-
"logo":"https://logowik.com/content/uploads/images/hume-ai1720994953.logowik.com.webp",
|
660 |
"icon": "fas fa-microphone-alt",
|
661 |
-
"rating":
|
662 |
"isNew": false,
|
663 |
"isFeatured": false
|
664 |
},
|
665 |
{
|
666 |
"name": "Ideogram",
|
667 |
-
"description": "כלי ליצירת תמונות עם טקסט ברור
|
668 |
"category": "image",
|
669 |
"url": "https://ideogram.ai/",
|
670 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRG4SEg6NSElTZm5tyNiwdJeiOu-oIveoikeQ&s",
|
671 |
"icon": "fas fa-font",
|
672 |
"rating": 4,
|
673 |
"isNew": false,
|
@@ -678,7 +690,7 @@
|
|
678 |
"description": "מודל AI שמאפשר להלביש וירטואלית בגדים על דמויות. כולל עיבוד תמונה והתאמות מדויקות.",
|
679 |
"category": "image",
|
680 |
"url": "https://replicate.com/cuuupid/idm-vton",
|
681 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7BWkd-_2Mai34fI4zacUOJqyIQ84txeBYtQ&s",
|
682 |
"icon": "fas fa-tshirt",
|
683 |
"rating": 4,
|
684 |
"isNew": false,
|
@@ -689,7 +701,7 @@
|
|
689 |
"description": "מודל AI שמאפשר להלביש וירטואלית בגדים על דמויות. כולל עיבוד תמונה והתאמות מדויקות.",
|
690 |
"category": "image",
|
691 |
"url": "https://huggingface.co/spaces/yisol/IDM-VTON",
|
692 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
693 |
"icon": "fas fa-tshirt",
|
694 |
"rating": 4,
|
695 |
"isNew": false,
|
@@ -700,7 +712,7 @@
|
|
700 |
"description": "המרת תמונות רגילות לתמונות תלת ממד שנראות חיים! מתאים למצגות, שיווק, ומציאות מדומה.",
|
701 |
"category": "image",
|
702 |
"url": "https://app.immersity.ai/upload",
|
703 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSe1EtDXczp4AovO4su8a3w5KBn3pIYVv1lfA&s",
|
704 |
"icon": "fas fa-vr-cardboard",
|
705 |
"rating": 4,
|
706 |
"isNew": false,
|
@@ -708,33 +720,33 @@
|
|
708 |
},
|
709 |
{
|
710 |
"name": "Ip-Adapter-FaceID",
|
711 |
-
"description": "שילוב תמונות AI עם הפנים שלך
|
712 |
"category": "image",
|
713 |
"url": "https://huggingface.co/spaces/multimodalart/Ip-Adapter-FaceID",
|
714 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
715 |
"icon": "fas fa-user-check",
|
716 |
"rating": 4,
|
717 |
"isNew": false,
|
718 |
"isFeatured": false
|
719 |
},
|
720 |
{
|
721 |
-
|
722 |
-
"description": "בסרטון זה תלמדו כיצד לתמלל קבצי קול בעברית בצורה פשוטה, מהירה ומדויקת. בין אם אתם סטודנטים, אנשי מקצוע או חובבי טכנולוגיה
|
723 |
"category": "audio",
|
724 |
"url": "https://www.ivrit.ai/he/174-2/",
|
725 |
-
"logo":"https://media.licdn.com/dms/image/v2/D4D0BAQExDpDLE8cI2A/company-logo_200_200/company-logo_200_200/0/1711734529123/ivrit_ai_logo?e=2147483647&v=beta&t=233d5soRIPDZ7vSQMh1dv_-D-ZdRcXVKk3xkYnor7qU",
|
726 |
"video": "https://www.youtube.com/embed/MQy9afP0VKw",
|
727 |
"icon": "fas fa-microphone-alt",
|
728 |
"rating": 3,
|
729 |
"isNew": false,
|
730 |
"isFeatured": false
|
731 |
-
},
|
732 |
{
|
733 |
"name": "Jasper",
|
734 |
"description": "מחולל תוכן אוטומטי שעוזר בכתיבת טקסטים שיווקיים ובלוגים.",
|
735 |
"category": "writing",
|
736 |
"url": "https://www.jasper.ai",
|
737 |
-
"logo":"https://cdn.prod.website-files.com/60e5f2de011b86acebc30db7/666f33302a54fab58083c231_Favicon.png",
|
738 |
"icon": "fas fa-pen-fancy",
|
739 |
"rating": 4,
|
740 |
"isNew": false,
|
@@ -745,7 +757,7 @@
|
|
745 |
"description": "כלי שמאפשר המרת תמונות לקובץ PDF אחד. מושלם לשליחת דוחות, קבלות או עבודות.",
|
746 |
"category": "utility",
|
747 |
"url": "https://convertio.co/image-converter/",
|
748 |
-
"logo":"https://static.convertio.co/img/apple-touch-icon-180x180-precomposed.png",
|
749 |
"icon": "fas fa-file-pdf",
|
750 |
"rating": 4,
|
751 |
"isNew": false,
|
@@ -753,10 +765,10 @@
|
|
753 |
},
|
754 |
{
|
755 |
"name": "Julius",
|
756 |
-
"description": "כלי המאפשר יצירת דוחות וניתוחים מתוך טבלאות בצורה טבעית
|
757 |
"category": "data",
|
758 |
"url": "https://julius.ai/",
|
759 |
-
"logo":"https://www.datocms-assets.com/96965/1732241222-ai-apps-julius-logo.png",
|
760 |
"icon": "fas fa-table",
|
761 |
"rating": 4,
|
762 |
"isNew": false,
|
@@ -764,10 +776,10 @@
|
|
764 |
},
|
765 |
{
|
766 |
"name": "Kapwing",
|
767 |
-
"description": "כלי לעריכת וידאו מבוסס דפדפן
|
768 |
"category": "video",
|
769 |
"url": "https://www.kapwing.com/",
|
770 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSNUK5RcbW22thzmrJ49Nijo4XDshBtK7JdiA&s",
|
771 |
"icon": "fas fa-video",
|
772 |
"rating": 4,
|
773 |
"isNew": false,
|
@@ -775,10 +787,10 @@
|
|
775 |
},
|
776 |
{
|
777 |
"name": "Kits",
|
778 |
-
"description": "מנוע דיבור מוזיקלי
|
779 |
"category": "audio",
|
780 |
"url": "https://www.kits.ai/",
|
781 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS6UB3XolFA_74fzNdIovMihwj3Fqa1O0tDTg&s",
|
782 |
"icon": "fas fa-headphones-alt",
|
783 |
"rating": 4,
|
784 |
"isNew": false,
|
@@ -789,7 +801,7 @@
|
|
789 |
"description": "מחולל תמונות וסרטונים בעזרת בינה מלאכותית, המציע מגוון רחב של אפשרויות ליצירת תוכן ויזואלי מרשים.",
|
790 |
"category": "video_generation",
|
791 |
"url": "https://klingai.com/",
|
792 |
-
"logo":"https://play-lh.googleusercontent.com/JOfjXqsShK8j1aGBc1xlHBnatoRKRwLsGuoFZUAvKksaEPvK71eLwSg4FbKlky9Es-s",
|
793 |
"icon": "fas fa-video",
|
794 |
"rating": 4,
|
795 |
"isNew": false,
|
@@ -797,20 +809,20 @@
|
|
797 |
},
|
798 |
{
|
799 |
"name": "Krea",
|
800 |
-
"description": "יצירת תוכן חזותי בזמן אמת בעזרת AI
|
801 |
"category": "design",
|
802 |
"url": "https://www.krea.ai/home",
|
803 |
-
"logo":"https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/08/9f/30/089f3087-aeec-eab9-bbf8-17d972525282/AppIcon-0-0-1x_U007emarketing-0-10-0-85-220.png/1024x1024bb.png",
|
804 |
"icon": "fas fa-pen-nib",
|
805 |
-
"rating":
|
806 |
"isNew": false,
|
807 |
"isFeatured": false
|
808 |
},
|
809 |
{
|
810 |
-
"name": "LensGo
|
811 |
"description": "המרו כל סרטון לאנימציה מדהימה בקלות עם LensGo! צפו במדריך המלא, גלו את כל השלבים ליצירת וידאו מונפש, והפכו את הסרטונים שלכם ליצירות אמנות חיות.",
|
812 |
-
"url": "https://lensgo.ai/",
|
813 |
-
"logo":"https://appscribed.com/wp-content/uploads/2024/09/lensgo-ai-logo-300x233.png",
|
814 |
"video": "https://www.youtube.com/embed/wtOGF-Y729Q?si=98VukXCL9NdM6fai",
|
815 |
"icon": "fas fa-magic",
|
816 |
"rating": 4,
|
@@ -819,21 +831,21 @@
|
|
819 |
},
|
820 |
{
|
821 |
"name": "Leonardo",
|
822 |
-
"description": "כלי ליצירת תמונות מדויקות ואומנותיות מבוססות AI
|
823 |
"category": "image",
|
824 |
"url": "https://leonardo.ai/",
|
825 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5AwOC13iesh_sl5V1FYIMRR98x2zDd6jfKg&s",
|
826 |
"icon": "fas fa-palette",
|
827 |
-
"rating":
|
828 |
"isNew": false,
|
829 |
"isFeatured": false
|
830 |
},
|
831 |
{
|
832 |
"name": "Live Portrait",
|
833 |
-
"description": "החייאת פורטרט
|
834 |
"category": "video",
|
835 |
"url": "https://huggingface.co/spaces/KwaiVGI/LivePortrait",
|
836 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
837 |
"video": "https://www.youtube.com/embed/n2pyFU_iSNE?si=G-uJ-FeKbB72dVHD",
|
838 |
"icon": "fas fa-user",
|
839 |
"rating": 5,
|
@@ -842,10 +854,10 @@
|
|
842 |
},
|
843 |
{
|
844 |
"name": "LM Studio",
|
845 |
-
"description": "ממשק שמריץ מודלים של שפה באופן מקומי על המחשב שלך
|
846 |
"category": "nlp",
|
847 |
"url": "https://lmstudio.ai/",
|
848 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9E-3L_CWBzGPCMxZ66Q3W8quGamRMqFR7_g&s",
|
849 |
"icon": "fas fa-laptop-code",
|
850 |
"rating": 4,
|
851 |
"isNew": false,
|
@@ -856,29 +868,29 @@
|
|
856 |
"description": "פלטפורמה המאפשרת להפוך רעיונות לאפליקציות מתפקדות תוך שניות, ללא צורך בכתיבת קוד. מתאימה ליזמים, צוותי מוצר ומעצבים המעוניינים ליצור פרוטוטיפים במהירות.",
|
857 |
"category": "coding",
|
858 |
"url": "https://lovable.dev/",
|
859 |
-
"logo":"https://lovable.dev/icon.svg?3d7ac3d2bb57ecbe",
|
860 |
"icon": "fas fa-magic",
|
861 |
"rating": 4,
|
862 |
"isNew": false,
|
863 |
"isFeatured": false
|
864 |
},
|
865 |
{
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
},
|
876 |
{
|
877 |
"name": "Make",
|
878 |
-
"description": "פלטפורמה עוצמתית לאוטומציה בין שירותים, אפליקציות ו-API
|
879 |
"category": "automation",
|
880 |
"url": "https://www.make.com/",
|
881 |
-
"logo":"https://cdn.prod.website-files.com/5f15081919fdf673994ab5fd/658d1160346d50ccbcb96f6f_Make-Logo.svg",
|
882 |
"icon": "fas fa-network-wired",
|
883 |
"rating": 5,
|
884 |
"isNew": false,
|
@@ -889,7 +901,7 @@
|
|
889 |
"description": "סוכן AI אוטונומי המאפשר ביצוע משימות מורכבות באופן עצמאי, כולל כתיבת קוד, ניתוח נתונים ותכנון פרויקטים, ללא צורך בהתערבות מתמשכת של המשתמש.",
|
890 |
"category": "ai-agents",
|
891 |
"url": "https://manus.im/",
|
892 |
-
"logo":"https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/manus.png",
|
893 |
"icon": "fas fa-robot",
|
894 |
"rating": 4,
|
895 |
"isNew": false,
|
@@ -897,10 +909,10 @@
|
|
897 |
},
|
898 |
{
|
899 |
"name": "Mendable",
|
900 |
-
"description": "פלטפורמה להוספת חוויית חיפוש תשובות חכמה לאתרים
|
901 |
"category": "search",
|
902 |
"url": "https://www.mendable.ai/",
|
903 |
-
"logo":"https://www.mendable.ai/Frame%20566%20(2).png",
|
904 |
"icon": "fas fa-search-plus",
|
905 |
"rating": 4,
|
906 |
"isNew": false,
|
@@ -908,45 +920,45 @@
|
|
908 |
},
|
909 |
{
|
910 |
"name": "Midjourney",
|
911 |
-
"description": "אחד הכלים הפופולריים בעולם ליצירת תמונות מתיאורים טקסטואליים
|
912 |
"category": "image",
|
913 |
"url": "https://www.midjourney.com/home",
|
914 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3694hy99SXrCLfoEKdCuBjtub6XSzgv5Bhw&s",
|
915 |
"icon": "fas fa-brush",
|
916 |
-
"rating":
|
917 |
"isNew": false,
|
918 |
"isFeatured": false
|
919 |
},
|
920 |
{
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
},
|
932 |
|
933 |
{
|
934 |
"name": "MMAudio",
|
935 |
"description": "פלטפורמה הממירה סרטונים שקטים לחוויות שמע עשירות באמצעות סינתזה חכמה של צלילים. הטכנולוגיה המתקדמת מנתחת את תוכן הווידאו ומייצרת פסי קול מותאמים אישית, כולל אפקטים קוליים, רעשי רקע ואלמנטים אטמוספריים, תוך דקות.",
|
936 |
"category": "audio",
|
937 |
-
"url": "https://mmaudio.net/",
|
938 |
"logo": "https://mmaudio.net/_next/image?url=%2Fimages%2Flogo.png&w=384&q=75",
|
939 |
"icon": "fas fa-music",
|
940 |
-
"rating":
|
941 |
"isNew": false,
|
942 |
"isFeatured": false
|
943 |
},
|
944 |
{
|
945 |
"name": "Mobirise",
|
946 |
-
"description": "כלי לבניית אתרים ללא קוד
|
947 |
"category": "builder",
|
948 |
"url": "https://mobirise.com/",
|
949 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBon130uRIBk2VAhiMmyovUqRPtoRg1UZ6ew&s",
|
950 |
"icon": "fas fa-globe",
|
951 |
"rating": 3,
|
952 |
"isNew": false,
|
@@ -959,7 +971,7 @@
|
|
959 |
"url": "https://www.moonvalley.com/",
|
960 |
"logo": "https://app.ashbyhq.com/api/images/org-theme-logo/08d1f550-f33d-4dc5-9fea-f206aed1150d/055d845f-f017-4293-ad0b-4cb8404d0cd1/3689e459-16c8-4704-b04b-873e039ac5da.png",
|
961 |
"icon": "fas fa-film",
|
962 |
-
"rating":
|
963 |
"isNew": false,
|
964 |
"isFeatured": false
|
965 |
},
|
@@ -968,10 +980,10 @@
|
|
968 |
"description": "אתר פשוט, שלא דורש מכם הרשמה- עם תא חיפוש פשוט שבו אתם כותבים משפט אחד והוא: על מה אתם רוצים להבין את ה”טיים ליין” ההיסטורי",
|
969 |
"category": "video",
|
970 |
"url": "https://mylens.ai/",
|
971 |
-
"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",
|
972 |
"video": "https://www.youtube.com/embed/tNtbOZYMgcs?si=b-e6nO_oe2GbaMBT",
|
973 |
"icon": "fas fa-video",
|
974 |
-
"rating":
|
975 |
"isNew": false,
|
976 |
"isFeatured": false
|
977 |
},
|
@@ -982,7 +994,7 @@
|
|
982 |
"url": "https://www.napkin.ai/",
|
983 |
"logo": "https://aimodelab.com/wp-content/uploads/2024/08/logo-napkin-ai.webp",
|
984 |
"icon": "fas fa-project-diagram",
|
985 |
-
"rating":
|
986 |
"isNew": false,
|
987 |
"isFeatured": false
|
988 |
},
|
@@ -1013,7 +1025,7 @@
|
|
1013 |
"description": "סביבת עבודה חכמה שעוזרת בניהול פרויקטים, רשימות ומידע.",
|
1014 |
"category": "productivity",
|
1015 |
"url": "https://www.notion.so",
|
1016 |
-
"logo":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Notion-logo.svg/2048px-Notion-logo.svg.png",
|
1017 |
"icon": "fas fa-list-alt",
|
1018 |
"rating": 4,
|
1019 |
"isNew": false,
|
@@ -1037,7 +1049,7 @@
|
|
1037 |
"url": "https://ollama.com/",
|
1038 |
"logo": "https://ollama.com/public/ollama.png",
|
1039 |
"icon": "fas fa-cube",
|
1040 |
-
"rating":
|
1041 |
"isNew": false,
|
1042 |
"isFeatured": false
|
1043 |
},
|
@@ -1046,7 +1058,7 @@
|
|
1046 |
"description": "ממיר טקסט לדיבור המאפשר יצירת קובצי אודיו איכותיים בעברית ובשפות נוספות, תוך שימוש במנוע הדיבור המתקדם של OpenAI. מתאים ליצירת פודקא��טים, ספרי אודיו ותכנים קוליים נוספים.",
|
1047 |
"category": "audio",
|
1048 |
"url": "https://openai-tts-fm.vercel.app/",
|
1049 |
-
"logo":"https://openai-tts-fm.vercel.app/icons/favicon.ico",
|
1050 |
"icon": "fas fa-volume-up",
|
1051 |
"rating": 4,
|
1052 |
"isNew": false,
|
@@ -1054,7 +1066,7 @@
|
|
1054 |
},
|
1055 |
{
|
1056 |
"name": "PartyRock",
|
1057 |
-
"description": "כלי של Amazon לבניית אפליקציות בינה מלאכותית
|
1058 |
"category": "builder",
|
1059 |
"url": "https://partyrock.aws/apps",
|
1060 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgvmjtTucdIL0890jJctcX2ca08t6p6Su8jw&s",
|
@@ -1076,7 +1088,7 @@
|
|
1076 |
},
|
1077 |
{
|
1078 |
"name": "pexels",
|
1079 |
-
"description": "אתר שמציע תמונות וסרטוני וידאו באיכות גבוהה
|
1080 |
"category": "media",
|
1081 |
"url": "https://www.pexels.com/",
|
1082 |
"logo": "https://cdn-1.webcatalog.io/catalog/pexels/pexels-icon-filled-256.png?v=1737601148637",
|
@@ -1114,7 +1126,7 @@
|
|
1114 |
"url": "https://pika.art/",
|
1115 |
"logo": "https://mms.businesswire.com/media/20231127388431/en/1953851/5/WhatsApp_Image_2023-11-27_at_19.10.06_%281%29.jpg?download=1",
|
1116 |
"icon": "fas fa-film",
|
1117 |
-
"rating":
|
1118 |
"isNew": false,
|
1119 |
"isFeatured": false
|
1120 |
},
|
@@ -1131,7 +1143,7 @@
|
|
1131 |
},
|
1132 |
{
|
1133 |
"name": "Play",
|
1134 |
-
"description": "מנוע דיבור מבוסס AI עם קולות טבעיים
|
1135 |
"category": "audio",
|
1136 |
"url": "https://play.ht/",
|
1137 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT9bniOBfVBfE8IEYRz6eKaCqhx6CdhSfqEMQ&s",
|
@@ -1142,7 +1154,7 @@
|
|
1142 |
},
|
1143 |
{
|
1144 |
"name": "Pmfm",
|
1145 |
-
"description": "פלטפורמה לבניית אפליקציות AI ללא קוד
|
1146 |
"category": "builder",
|
1147 |
"url": "https://pmfm.ai/",
|
1148 |
"logo": "https://pmfm.ai/img/favico.ico",
|
@@ -1152,20 +1164,20 @@
|
|
1152 |
"isFeatured": false
|
1153 |
},
|
1154 |
{
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
},
|
1166 |
{
|
1167 |
"name": "QR Code monkey",
|
1168 |
-
"description": "יצירת קודי QR לכל מטרה
|
1169 |
"category": "utility",
|
1170 |
"url": "https://www.qrcode-monkey.com/#vcard",
|
1171 |
"logo": "https://www.qrcode-monkey.com/img/favicon.ico",
|
@@ -1175,23 +1187,23 @@
|
|
1175 |
"isFeatured": false
|
1176 |
},
|
1177 |
{
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
},
|
1189 |
{
|
1190 |
"name": "Remaker",
|
1191 |
-
"description": "החלפת פנים בתמונות בקליק
|
1192 |
"category": "image",
|
1193 |
"url": "https://remaker.ai/face-swap-free/",
|
1194 |
-
"logo":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKAmXvWmba4D5bDUXdTCDD_j5UZfTS5Z_I9g&s",
|
1195 |
"icon": "fas fa-smile-beam",
|
1196 |
"rating": 4,
|
1197 |
"isNew": false,
|
@@ -1199,7 +1211,7 @@
|
|
1199 |
},
|
1200 |
{
|
1201 |
"name": "Replay",
|
1202 |
-
"description": "כלי לזיהוי דוברים
|
1203 |
"category": "audio",
|
1204 |
"url": "https://www.tryreplay.io/",
|
1205 |
"logo": "https://production-v2.muse-cdn.com/application-icon-images/e1c7cf55-0480-478f-b966-c010031ce3a1.png",
|
@@ -1210,12 +1222,12 @@
|
|
1210 |
},
|
1211 |
{
|
1212 |
"name": "Run Diffusion",
|
1213 |
-
"description": "פלטפורמה להרצת Stable Diffusion בענן עם ממשק גרפי
|
1214 |
"category": "image",
|
1215 |
"url": "https://rundiffusion.com/",
|
1216 |
"logo": "https://www.rundiffusion.com/favicon.svg",
|
1217 |
"icon": "fas fa-cloud",
|
1218 |
-
"rating":
|
1219 |
"isNew": false,
|
1220 |
"isFeatured": false
|
1221 |
},
|
@@ -1232,7 +1244,7 @@
|
|
1232 |
},
|
1233 |
{
|
1234 |
"name": "Sketch meta lab",
|
1235 |
-
"description": "כלי לילדים לציור חווייתי
|
1236 |
"category": "design",
|
1237 |
"url": "https://sketch.metademolab.com/canvas",
|
1238 |
"logo": "https://companieslogo.com/img/orig/META-4767da84.png?t=1720244492",
|
@@ -1243,38 +1255,38 @@
|
|
1243 |
},
|
1244 |
{
|
1245 |
"name": "Stable Diffusion",
|
1246 |
-
"description": "גרסת אינטרנט של Stable Diffusion
|
1247 |
"category": "image",
|
1248 |
"url": "https://stablediffusionweb.com/",
|
1249 |
"logo": "https://assets.wheelhouse.com/media/_solution_logo_04032024_26265377.png",
|
1250 |
"icon": "fas fa-project-diagram",
|
1251 |
-
"rating":
|
1252 |
"isNew": false,
|
1253 |
"isFeatured": false
|
1254 |
},
|
1255 |
{
|
1256 |
"name": "Studio Nebius",
|
1257 |
-
"description": "פלטפורמת ניתוח AI לצוותים עסקיים
|
1258 |
"category": "productivity",
|
1259 |
"url": "https://studio.nebius.ai/",
|
1260 |
-
"logo":"https://studio.nebius.com/favicon-96x96.png",
|
1261 |
"icon": "fas fa-chart-line",
|
1262 |
"rating": 4,
|
1263 |
"isNew": false,
|
1264 |
"isFeatured": false
|
1265 |
},
|
1266 |
{
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
},
|
1278 |
{
|
1279 |
"name": "Synthesia",
|
1280 |
"description": "יצירת סרטונים מקצועיים עם אווטרים קוליים מבוססי AI.",
|
@@ -1288,7 +1300,7 @@
|
|
1288 |
},
|
1289 |
{
|
1290 |
"name": "Theres an AI for that",
|
1291 |
-
"description": "מאגר כלים אדיר
|
1292 |
"category": "directory",
|
1293 |
"url": "https://theresanaiforthat.com/",
|
1294 |
"logo": "https://theresanaiforthat.com/favicon-large.png",
|
@@ -1299,7 +1311,7 @@
|
|
1299 |
},
|
1300 |
{
|
1301 |
"name": "TimeOS",
|
1302 |
-
"description": "מזכירות AI לפגישות
|
1303 |
"category": "productivity",
|
1304 |
"url": "https://www.timeos.ai/",
|
1305 |
"logo": "https://cdn.prod.website-files.com/64d23f0719057c157e4aaef9/64e6072ab6292fb6b703de3b_Favicon.png",
|
@@ -1334,7 +1346,7 @@
|
|
1334 |
},
|
1335 |
{
|
1336 |
"name": "Yepic",
|
1337 |
-
"description": "המרת טקסטים לווידאו עם דמויות מדברות
|
1338 |
"category": "video",
|
1339 |
"url": "https://www.yepic.ai/",
|
1340 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT6afB6NlqYkWNga1aBuFSyOi_spDZ3EY5msA&s",
|
@@ -1344,17 +1356,17 @@
|
|
1344 |
"isFeatured": false
|
1345 |
},
|
1346 |
{
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
},
|
1358 |
{
|
1359 |
"name": "Vidnoz",
|
1360 |
"description": "פלטפורמה חינמית ליצירת סרטונים באמצעות בינה מלאכותית, המציעה מעל 1,500 אווטרים ריאליסטיים, 1,380 קולות AI ב-140 שפות, ו-2,800 תבניות מוכנות לשימוש. מאפשרת יצירת תוכן וידאו מקצועי במהירות ובקלות.",
|
@@ -1373,13 +1385,13 @@
|
|
1373 |
"url": "https://viggle.ai/",
|
1374 |
"logo": "https://img.utdstc.com/icon/641/07d/64107d3819bd948741ec473be1183cede7fe7cd81a231b9756876d5489a36210:200",
|
1375 |
"icon": "fas fa-running",
|
1376 |
-
"rating":
|
1377 |
"isNew": false,
|
1378 |
"isFeatured": true
|
1379 |
},
|
1380 |
{
|
1381 |
"name": "Vmake",
|
1382 |
-
"description": "שיפור איכות וידאו בלחיצת כפתור
|
1383 |
"category": "video",
|
1384 |
"url": "https://vmake.ai/video-enhancer/upload",
|
1385 |
"logo": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/0a/b0/61/0ab061e9-6e6f-efd1-2e73-522992cc6bd0/AppIcon-0-0-1x_U007emarketing-0-6-0-85-220.png/1200x600wa.png",
|
@@ -1390,7 +1402,7 @@
|
|
1390 |
},
|
1391 |
{
|
1392 |
"name": "UChat",
|
1393 |
-
"description": "פלטפורמת בניית צ’אטבוטים מתקדמת
|
1394 |
"category": "automation",
|
1395 |
"url": "https://www.uchat.com.au/",
|
1396 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_tuBrSc8UNIbcUFLA1Dsj1B2TJB1jbvUiIw&s",
|
@@ -1400,20 +1412,20 @@
|
|
1400 |
"isFeatured": false
|
1401 |
},
|
1402 |
{
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
},
|
1414 |
{
|
1415 |
"name": "WhatsApp Chatbot",
|
1416 |
-
"description": "נגישות קולית בוואטסאפ
|
1417 |
"category": "accessibility",
|
1418 |
"url": "https://api.whatsapp.com/send?phone=18002428478&text=הי מה שלומך?",
|
1419 |
"logo": "https://p7.hiclipart.com/preview/266/466/402/whatsapp-computer-icons-chatbot-clip-art-what-app-icon.jpg",
|
@@ -1424,18 +1436,18 @@
|
|
1424 |
},
|
1425 |
{
|
1426 |
"name": "Wix",
|
1427 |
-
"description": "בניית אתרים בעיצוב מותאם אישית
|
1428 |
"category": "builder",
|
1429 |
"url": "https://www.wix.com/",
|
1430 |
"logo": "https://cdn-icons-png.flaticon.com/512/5968/5968762.png",
|
1431 |
"icon": "fas fa-globe",
|
1432 |
-
"rating":
|
1433 |
"isNew": false,
|
1434 |
"isFeatured": false
|
1435 |
},
|
1436 |
{
|
1437 |
"name": "Zapier",
|
1438 |
-
"description": "חיבור בין אפליקציות לתהליכים אוטומטיים
|
1439 |
"category": "automation",
|
1440 |
"url": "https://zapier.com/central",
|
1441 |
"logo": "https://www.svgrepo.com/show/354596/zapier-icon.svg",
|
@@ -1443,8 +1455,8 @@
|
|
1443 |
"rating": 3,
|
1444 |
"isNew": false,
|
1445 |
"isFeatured": false
|
1446 |
-
},
|
1447 |
-
|
1448 |
{
|
1449 |
"name": "חילוץ טקסט מתמונה",
|
1450 |
"description": "פיתחתי אתר המאפשר לחלץ טקסט מתמונות לפורמט הניתן לעריכה תוך שניות, בעברית ובכל שפה. מושלם לסטודנטים, לאנשי מקצוע ולכל מי שעוסק בטקסט מודפס או בכתב יד. עכשיו זה ממש קל לבצע דיגיטציה של מסמכים, לכידת הערות ולייעל את העבודה עם מסמכים :)",
|
@@ -1458,29 +1470,29 @@
|
|
1458 |
"rating": 5
|
1459 |
},
|
1460 |
{
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
},
|
1472 |
-
{
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
},
|
1484 |
|
1485 |
{
|
1486 |
"name": "המרת תמונות ל PDF",
|
@@ -1492,7 +1504,7 @@
|
|
1492 |
"video": "https://www.youtube.com/embed/xj8COkST--8?si=QeYl05rW5dwQiYQT",
|
1493 |
"isNew": false,
|
1494 |
"isFeatured": true,
|
1495 |
-
"rating": 5
|
1496 |
},
|
1497 |
{
|
1498 |
"name": "iLovePDF",
|
@@ -1512,7 +1524,7 @@
|
|
1512 |
"url": "https://machinelearningforkids.co.uk/",
|
1513 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTysI6tQs62DJ5f3bANwqlpKpU6fgjujV7ZmA&s",
|
1514 |
"icon": "fas fa-graduation-cap",
|
1515 |
-
"rating":
|
1516 |
"isNew": false,
|
1517 |
"isFeatured": false
|
1518 |
},
|
@@ -1529,9 +1541,9 @@
|
|
1529 |
},
|
1530 |
{
|
1531 |
"name": "speechgen",
|
1532 |
-
"description": "המרת טקסט לקול בעברית ובשפות נוספות
|
1533 |
"category": "audio",
|
1534 |
-
"url": "https://speechgen.io/
|
1535 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEHbOvOYGlN3I0Pzfoy3TOmGuicaEGmLfBg&s",
|
1536 |
"icon": "fas fa-volume-down",
|
1537 |
"rating": 3,
|
@@ -1549,4 +1561,4 @@
|
|
1549 |
"isNew": false,
|
1550 |
"isFeatured": false
|
1551 |
}
|
1552 |
-
]
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"name": "Firebase Studio - סביבת פיתוח מבוססת AI בדפדפן",
|
4 |
+
"description": "סביבת פיתוח חדשנית בענן המאפשרת לבנות אפליקציות ווב, מובייל ודסקטופ בעזרת בינה מלאכותית (Gemini), בלי צורך בידע מוקדם בתכנות. הכל מתבצע ישירות מהדפדפן, עם תמיכה בפרויקטים קיימים, תבניות מוכנות, ויכולת פרסום מהירה.",
|
5 |
+
"url": "https://studio.firebase.google.com",
|
6 |
+
"logo": "https://www.gstatic.com/monospace/250314/favicon.ico",
|
7 |
+
"category": "development",
|
8 |
+
"icon": "fas fa-code",
|
9 |
+
"video": "",
|
10 |
+
"isFeatured": false,
|
11 |
+
"rating": 4,
|
12 |
+
"isNew": true,
|
13 |
+
"dateAdded": "2025-04-13T13:23:00Z"
|
14 |
+
},
|
15 |
+
{
|
16 |
+
"name": "יצירת פודקאסט AI בעברית ובחינם",
|
17 |
+
"description": "צרו שיחות פודקאסט בעברית בין שני דוברים בנושאים שמעניינים אתכם. בחרו נושא או העלו קובץ PDF, והמערכת תיצור עבורכם תסריט שיחה עם תוכן מעניין ומידע אמין, תפיק אודיו טבעי, ותאפשר לכם להוריד ולשתף את הפודקאסט המוכן.",
|
18 |
+
"url": "https://machberet.replit.app/signup",
|
19 |
+
"logo": "https://user-images.githubusercontent.com/397895/34431097-350197f6-ec29-11e7-8369-0c4069a65fd3.jpg",
|
20 |
+
"category": "audio",
|
21 |
+
"icon": "fas fa-podcast",
|
22 |
+
"video": "",
|
23 |
+
"isFeatured": false,
|
24 |
+
"rating": 4,
|
25 |
+
"isNew": true,
|
26 |
+
"dateAdded": "2025-04-13T10:30:00Z"
|
27 |
},
|
28 |
|
29 |
{
|
30 |
"name": "Adobe Firefly",
|
31 |
+
"description": "המערכת של אדובי ליצירת תוכן גרפי מתיאורים - כולל טקסטים, צבעים, וסטיילים.",
|
32 |
"category": "design",
|
33 |
"url": "https://firefly.adobe.com/",
|
34 |
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Adobe_Firefly_Logo.svg/512px-Adobe_Firefly_Logo.svg.png",
|
35 |
"icon": "fas fa-fire",
|
36 |
+
"rating": 4,
|
37 |
+
"isFeatured": false,
|
38 |
+
"isNew": false
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"name": "שיפור סאונד עם Adobe Podcast AI",
|
42 |
+
"description": "שפרו את איכות ההקלטות שלכם בקלות עם Adobe Podcast Enhance. הסירו רעשי רקע, חדדו את הדיבור והפכו את הסאונד שלכם למקצועי - והכל בחינם דרך הדפדפן.",
|
43 |
+
"url": "https://podcast.adobe.com/enhance",
|
44 |
+
"logo": "https://podcast.adobe.com/favicon.ico",
|
45 |
+
"category": "audio",
|
46 |
+
"icon": "fas fa-volume-up",
|
47 |
+
"video": "https://www.youtube.com/embed/pfebhGgaNBA?si=GjBTJFyuVHAjoDnd",
|
48 |
+
"rating": 5,
|
49 |
"isFeatured": false,
|
50 |
"isNew": false
|
51 |
},
|
52 |
{
|
53 |
+
"name": "היפוך כיוון תצוגה באתר",
|
54 |
+
"description": "שנו את כיוון התצוגה באתרים בין ימין לשמאל ושמאל לימין בלחיצה אחת! סקריפט JavaScript פשוט שמותאם לסימניה בדפדפן ומאפשר התאמה אישית מהירה של חוויית הגלישה.",
|
55 |
+
"url": "javascript:(function(){var elements=document.getElementsByTagName('*');for(e of elements){if(!e.style)continue;if(!e.style.direction||e.style.direction==='ltr')e.style.direction='rtl';else e.style.direction='ltr';}})()",
|
56 |
+
"logo": "https://www.svgrepo.com/show/358133/right-to-left-text-direction.svg",
|
57 |
+
"category": "utility",
|
58 |
+
"icon": "fas fa-exchange-alt",
|
59 |
+
"video": "https://www.youtube.com/embed/WIrU_3HqaCM?si=SlbyeM1PcwiCiUZm",
|
60 |
+
"isNew": false,
|
61 |
+
"isFeatured": false,
|
62 |
+
"rating": 5
|
63 |
+
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
{
|
66 |
"name": "AI Chatbot",
|
67 |
"description": "פלטפורמה המציעה אינטראקציה עם מודלי שפה מתקדמים כגון GPT-4o, Gemini Pro, DeepSeek, Qwen2.5 ועוד. מאפשרת קבלת תשובות מיידיות, תרגומים, יצירת תמונות באמצעות DALL·E, ושימוש בכלי AI מתקדמים נוספים.",
|
68 |
"category": "ai-agents",
|
69 |
"url": "https://aichatbot.co/",
|
70 |
+
"logo": "https://storage.googleapis.com/ai-chat-website-assets/ai_chatbot_icon_new.webp",
|
71 |
"icon": "fas fa-comments",
|
72 |
"rating": 3,
|
73 |
"isNew": false,
|
|
|
78 |
"description": "צייר AI שמאפשר ליצור דמויות מאוירות לפי תיאור טקסט. כולל קומיקס, סצנות וסיפורים.",
|
79 |
"category": "image",
|
80 |
"url": "https://app.artflow.ai/auth/register?via=user_tnfw_ibtzq",
|
81 |
+
"logo": "https://ph-files.imgix.net/76af613d-282a-4404-bb7d-fc3955ff8930.png?auto=format",
|
82 |
"video": "https://www.youtube.com/embed/_xIJoXH-Sm4?si=S_l4hfKO0-xa5kPd",
|
83 |
"icon": "fas fa-pencil-alt",
|
84 |
"rating": 4,
|
|
|
90 |
"description": "פלטפורמה מבוססת בינה מלאכותית המאפשרת יצירת תמונות מותאמות אישית באיכות גבוהה. Astria AI מתמחה באימון מודלים ליצירת דמויות עקביות, מה שהופך אותה לכלי אידיאלי עבור פרויקטים יצירתיים הדורשים ויזואליזציות מדויקות.",
|
91 |
"category": "image",
|
92 |
"url": "https://www.astria.ai/",
|
93 |
+
"logo": "https://www.astria.ai/assets/logo-b4e21f646fb5879eb91113a70eae015a7413de8920960799acb72c60ad4eaa99.png",
|
94 |
"icon": "fas fa-paint-brush",
|
95 |
"rating": 4,
|
96 |
"isNew": false,
|
|
|
112 |
"description": "פלטפורמת Low-Code המאפשרת למשתמשים ליצור יישומים שלמים ללא צורך בכתיבת קוד. מתאימה למפתחים, מנהלי פרויקטים ואנשי עסקים המעוניינים לפתח פתרונות טכנולוגיים במהירות וביעילות.",
|
113 |
"category": "coding",
|
114 |
"url": "https://app.base44.com/",
|
115 |
+
"logo": "https://app.base44.com/static/media/logo_v3.c1b6fb94b09220cfe957.png",
|
116 |
"icon": "fas fa-cogs",
|
117 |
"rating": 5,
|
118 |
"isNew": false,
|
|
|
120 |
},
|
121 |
{
|
122 |
"name": "bitly",
|
123 |
+
"description": "קיצור לינקים עם סטטיסטיקות - לראות מי לחץ, מתי, וכמה. מותאם גם לשיווק.",
|
124 |
"category": "utility",
|
125 |
"url": "https://app.bitly.com/",
|
126 |
+
"logo": "https://cdn.worldvectorlogo.com/logos/bitly.svg",
|
127 |
"icon": "fas fa-link",
|
128 |
"rating": 3,
|
129 |
"isNew": false,
|
|
|
131 |
},
|
132 |
{
|
133 |
"name": "Bubble",
|
134 |
+
"description": "פלטפורמת No-Code מתקדמת לבניית אפליקציות עם יכולות AI - כולל תמיכה ב-GPT-4 וכלי גרירה נוחים.",
|
135 |
"category": "builder",
|
136 |
"url": "https://bubble.io/",
|
137 |
+
"logo": "https://seeklogo.com/images/B/bubble-icon-logo-90ECCA2A26-seeklogo.com.png",
|
138 |
"icon": "fas fa-puzzle-piece",
|
139 |
"rating": 4,
|
140 |
"isNew": false,
|
|
|
142 |
},
|
143 |
{
|
144 |
"name": "Canva",
|
145 |
+
"description": "עיצוב גרפי לכל אחד - מצגות, פוסטים, סרטונים ודפי נחיתה עם תבניות מדהימות.",
|
146 |
"category": "design",
|
147 |
"url": "https://www.canva.com/",
|
148 |
+
"logo": "https://static.vecteezy.com/system/resources/previews/032/329/173/non_2x/canva-icon-logo-symbol-free-png.png",
|
149 |
"icon": "fas fa-paint-brush",
|
150 |
"rating": 5,
|
151 |
"isNew": false,
|
|
|
153 |
},
|
154 |
{
|
155 |
"name": "CapCut",
|
156 |
+
"description": "עריכת וידאו, יצירת תוכן מקצועי ומהיר כולל כלים של AI - מושלם ליוצרים.",
|
157 |
"category": "video",
|
158 |
"url": "https://www.capcut.com/",
|
159 |
+
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
160 |
"icon": "fas fa-cut",
|
161 |
"rating": 4,
|
162 |
"isNew": false,
|
163 |
"isFeatured": true
|
164 |
},
|
165 |
{
|
166 |
+
"name": "Captions.ai - תרגום כתוביות בכל שפה",
|
167 |
+
"description": "הוסיפו כתוביות בעברית או בכל שפה אחרת לסרטונים שלכם, והפכו אותם לנגישים, מקצועיים וקלים להבנה עבור כל קהל יעד.",
|
168 |
+
"url": "https://www.captions.ai/",
|
169 |
+
"logo": "https://cdn.prod.website-files.com/60d0c29c2e1261708dd228ea/6601cc5802f354627dfc87a7_Webclip-96x96.png",
|
170 |
+
"category": "video",
|
171 |
+
"icon": "fas fa-closed-captioning",
|
172 |
+
"video": "https://www.youtube.com/embed/mo0J7Npo7MM?si=xmgsXh_MKBmnJIpu",
|
173 |
+
"isNew": false,
|
174 |
+
"isFeatured": false,
|
175 |
+
"rating": 4.5
|
176 |
+
},
|
177 |
{
|
178 |
"name": "ChatGPT",
|
179 |
"description": "מנוע על שאלות בכל הנושאים. נוח מאוד, אינטואיטיבי, זמין דרך ממשק אינטרנט.",
|
180 |
"category": "productivity",
|
181 |
"url": "https://chat.openai.com/",
|
182 |
+
"logo": "https://cdn.freelogovectors.net/svg18/chatgpt-logo-icon-freelogovectors.net.svg",
|
183 |
"video": "https://www.youtube.com/embed/Jml_LSMZLKY?si=Uj_yn5NCbFIcPu8V",
|
184 |
"icon": "fas fa-comment-dots",
|
185 |
"rating": 5,
|
|
|
191 |
"description": "עוזר AI מתקדם המשלב את מיטב מודלי השפה הגדולים (LLMs) כגון GPT-4o, Sonnet-3.5, Gemini 2.0 ועוד. מאפשר אינטראקציות טבעיות, יצירת תמונות, ניתוח מסמכים, ביצוע קוד, ויצירת צ'אטבוטים מותאמים אישית.",
|
192 |
"category": "ai-agents",
|
193 |
"url": "https://chatllm.abacus.ai/",
|
194 |
+
"logo": "https://play-lh.googleusercontent.com/O35u7LcmgKHsRpEQvHmT9ACfvDvP5S6HRIVmz-x-spUhojXIcnk0wbMEqaBSWPUJYQ",
|
195 |
"icon": "fas fa-robot",
|
196 |
"rating": 3,
|
197 |
"isNew": false,
|
|
|
202 |
"description": "מאגר עצום של מודלים מותאמים ליצירת דמויות, ציורים, סטיילים ועוד. תומך ב-Stable Diffusion.",
|
203 |
"category": "image",
|
204 |
"url": "https://civitai.com/",
|
205 |
+
"logo": "https://images.seeklogo.com/logo-png/61/1/civitai-logo-png_seeklogo-611578.png",
|
206 |
"icon": "fas fa-draw-polygon",
|
207 |
"rating": 4,
|
208 |
"isNew": false,
|
|
|
210 |
},
|
211 |
{
|
212 |
"name": "Claude",
|
213 |
+
"description": "מנוע על מבית Anthropic - עונה על שאלות בצורה נעימה ובשפה טבעית, כולל תמיכה מרשימה בעברית.",
|
214 |
"category": "productivity",
|
215 |
"url": "https://claude.ai/",
|
216 |
"icon": "fas fa-comments",
|
|
|
224 |
"description": "כלי עריכת וידאו של מיקרוסופט, נוח מאוד לתלמידים, אנשי שיווק ויוצרים. ללא צורך בהתקנה.",
|
225 |
"category": "video",
|
226 |
"url": "https://app.clipchamp.com/",
|
227 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR81_ndwospsGSvQqM5ti20GWqmm8339DzTrA&s",
|
228 |
"icon": "fas fa-edit",
|
229 |
"rating": 4,
|
230 |
"isNew": false,
|
|
|
235 |
"description": "כלי עריכה גרפית מבוסס AI להסרת רקעים, תיקונים, שדרוג תמונות ויצירת מצגות תוך שניות.",
|
236 |
"category": "design",
|
237 |
"url": "https://clipdrop.co/",
|
238 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTRgJAfeml_EeutvGpqDeitadivy7xh82FYmg&s",
|
239 |
"icon": "fas fa-crop-alt",
|
240 |
+
"rating": 4,
|
241 |
"isNew": false,
|
242 |
"isFeatured": false
|
243 |
},
|
244 |
{
|
245 |
"name": "Cohere",
|
246 |
+
"description": "חברה קנדית שמספקת פתרונות מבוססי LLMs - בעיקר לעיבוד שפה טבעית, חיפוש והפקת תובנות. מתאימה לארגונים.",
|
247 |
"category": "nlp",
|
248 |
"url": "http://www.cohere.ai/",
|
249 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1wV4vA35_T8iDmQk-TdF7Kbl9-ycmdOY18Q&s",
|
250 |
"icon": "fas fa-language",
|
251 |
"rating": 4,
|
252 |
"isNew": false,
|
|
|
254 |
},
|
255 |
{
|
256 |
"name": "Comfy UI",
|
257 |
+
"description": "מערכת גרפית ליצירת תמונות באמצעות Stable Diffusion - סופר גמישה עם קוד פתוח.",
|
258 |
"category": "image",
|
259 |
"url": "https://github.com/comfyanonymous/ComfyUI",
|
260 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzHZSy0ZhkpEPJ-X11wdZ9wnidA0FkPPW7Hw&s",
|
261 |
"icon": "fas fa-project-diagram",
|
262 |
"rating": 4,
|
263 |
"isNew": false,
|
|
|
268 |
"description": "מוטמע במוצרי מיקרוסופט ונותן הצעות קוד בזמן אמת. תומך ב-Edge, ב-Word, וב-Excel. פשוט תענוג.",
|
269 |
"category": "coding",
|
270 |
"url": "https://copilot.microsoft.com/",
|
271 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXa8C3fWi-xW4UuDNZ0IlmPoLtQxizyutfUA&s",
|
272 |
"icon": "fas fa-code",
|
273 |
+
"rating": 4,
|
274 |
"isNew": false,
|
275 |
"isFeatured": false
|
276 |
},
|
|
|
279 |
"description": "פלטפורמה המאפשרת יצירת מוצרים דיגיטליים ללא הגבלות, כולל אתרים ואפליקציות מובייל, עם אינטגרציות ל-Supabase ו-ChatGPT, ותמיכה בפרויקטים פרטיים.",
|
280 |
"category": "builder",
|
281 |
"url": "https://getcreatr.com/",
|
282 |
+
"logo": "https://getcreatr.com/apple-touch-icon.png",
|
283 |
"icon": "fas fa-tools",
|
284 |
"rating": 4,
|
285 |
"isNew": false,
|
|
|
290 |
"description": "יצירת וידאו עם דמויות מדברות מתמונה סטטית. אידיאלי למצגות, הדרכות ושיווק אישי.",
|
291 |
"category": "video",
|
292 |
"url": "https://www.d-id.com/",
|
293 |
+
"logo": "https://allvectorlogo.com/img/2023/06/d-id-ltd-logo-vector.png",
|
294 |
"icon": "fas fa-image",
|
295 |
+
"rating": 4,
|
296 |
"isNew": false,
|
297 |
"isFeatured": false
|
298 |
},
|
|
|
301 |
"description": "מערכת AI שיוצרת תמונות ואומנות מתיאורים בשפה טבעית.",
|
302 |
"category": "design",
|
303 |
"url": "https://openai.com/dall-e-2",
|
304 |
+
"logo": "https://a.storyblok.com/f/165154/1280x720/6326998665/03_dall-e-logo.png/m/",
|
305 |
"icon": "fas fa-palette",
|
306 |
+
"rating": 4,
|
307 |
"isNew": false,
|
308 |
"isFeatured": false
|
309 |
},
|
310 |
{
|
311 |
"name": "Deep Learning AI",
|
312 |
+
"description": "הבית של אנדרו נג ולמידת מכונה - קורסים, קהילה, מדריכים ומשאבים עדכניים למפתחים וחוקרים.",
|
313 |
"category": "education",
|
314 |
"url": "https://deeplearning.ai/",
|
315 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQjqenriFknhB2bXwXOAYGaMKLfyCAIS72hw&s",
|
316 |
"icon": "fas fa-graduation-cap",
|
317 |
+
"rating": 4,
|
318 |
"isNew": false,
|
319 |
"isFeatured": false
|
320 |
},
|
|
|
334 |
"description": "עורך תמונות מבוסס AI ליצירת סצנות מדהימות מדימיון. מתאים גם לוידאו, קומיקס ודמויות.",
|
335 |
"category": "image",
|
336 |
"url": "https://domoai.app/",
|
337 |
+
"logo": "https://www.domoai.app/apple-touch-icon.png",
|
338 |
"icon": "fas fa-image",
|
339 |
"rating": 4,
|
340 |
"isNew": false,
|
|
|
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 - המרת טקסט לדיבור טבעי",
|
356 |
+
"description": "המרו טקסט לדיבור מציאותי ואנושי במגוון שפות וסגנונות. הכלי מאפשר יצירת קריינות מקצועית לסרטונים, פודקאסטים, ספרי שמע ועוד - בקלות ובמהירות.",
|
357 |
+
"url": "https://elevenlabs.io/",
|
358 |
+
"logo": "https://11labs-nonprd-15f22c1d.s3.eu-west-3.amazonaws.com/a2ea339b-8b5e-41bb-b706-24eda8a4c9e3/elevenlabs-symbol.png",
|
359 |
+
"category": "audio",
|
360 |
+
"icon": "fas fa-volume-up",
|
361 |
+
"video": "https://www.youtube.com/embed/8hrIGmKYV4c?si=AM9w1-hh8dsqhslq",
|
362 |
+
"isNew": false,
|
363 |
+
"isFeatured": false,
|
364 |
+
"rating": 4.8
|
365 |
+
},
|
366 |
{
|
367 |
"name": "Excalidraw",
|
368 |
"description": "כלי חינמי וקליל ליצירת תרשימים בסגנון לוח מחיק. אני משתמש בו במהלך שיחות ZOOM להעברת רעיונות מורכבים באמצעות המחשה חזותית. הממשק הפשוט מאפשר שרטוט בזמן אמת, מה שהופך את התקשורת ליעילה וברורה יותר.",
|
369 |
"category": "design",
|
370 |
"url": "https://excalidraw.com/",
|
371 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQq2ajzRVwegPBvZdvi3s6BhZCfEenv_F_lgg&s",
|
372 |
"icon": "fas fa-pencil-alt",
|
373 |
"rating": 4,
|
374 |
"isNew": false,
|
|
|
379 |
"description": "כלי המאפשר החלפת פנים בתמונות, סרטונים ו-GIFs.",
|
380 |
"category": "image",
|
381 |
"url": "https://fakeface.io/",
|
382 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSH5bntcSE9Vmc1QrYp2ZVO8Ibs_Wemz5dtDw&s",
|
383 |
"icon": "fas fa-exchange-alt",
|
384 |
"rating": 3,
|
385 |
"isNew": false,
|
|
|
387 |
},
|
388 |
{
|
389 |
"name": "Face to All SDXL",
|
390 |
+
"description": "המרת פנים קיימות לדמויות AI - לדוגמה, פרצוף שלך הופך ל-emojי או גיבור קומיקס.",
|
391 |
"category": "image",
|
392 |
"url": "https://huggingface.co/spaces/multimodalart/face-to-all",
|
393 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
394 |
"video": "https://www.youtube.com/embed/4HyZAlgGe08?si=HWOO7sBKBcp9b-Bl",
|
395 |
"icon": "fas fa-smile ",
|
396 |
"rating": 5,
|
|
|
399 |
},
|
400 |
{
|
401 |
"name": "FaceFusion",
|
402 |
+
"description": "כלי פשוט למיזוג פנים בין תמונות או בין אנשים - מתאים לקליפים ולוידאו קצר.",
|
403 |
"category": "video",
|
404 |
"url": "https://facefusion.io/",
|
405 |
+
"logo": "https://avatars.githubusercontent.com/u/142538020?s=48&v=4",
|
406 |
"icon": "fas fa-user-friends",
|
407 |
+
"rating": 3,
|
408 |
"isNew": false,
|
409 |
"isFeatured": false
|
410 |
},
|
|
|
413 |
"description": "פלטפורמת מדיה גנרטיבית למפתחים, המציעה אימון מהיר של מודלים כמו Flux ליצירת דמויות עקביות באמצעות טכניקת LoRA. מאפשרת התאמה אישית של מודלים קיימים לצרכים ספציפיים, עם יכולת לאימון סגנונות או דמויות בפחות מ-5 דקות.",
|
414 |
"category": "platform",
|
415 |
"url": "https://fal.ai/",
|
416 |
+
"logo": "https://fal.ai/favicon.png",
|
417 |
"icon": "fas fa-brain",
|
418 |
"rating": 4,
|
419 |
"isNew": false,
|
|
|
421 |
},
|
422 |
{
|
423 |
"name": "Fast Bots",
|
424 |
+
"description": "בוטים מהירים עם AI מובנה - שואבים תוכן מהאתר שלך ונותנים תמיכה אונליין 24/7 ללקוחות.",
|
425 |
"category": "customer-support",
|
426 |
"url": "https://fastbots.ai/",
|
427 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0MQSOQD5ANxtl8jP7jIbTx2RUeNEkn7Fo8g&s",
|
428 |
"icon": "fas fa-robot",
|
429 |
"rating": 4,
|
430 |
"isNew": false,
|
|
|
435 |
"description": "פלטפורמה הממירה הקלטות פגישות לטקסט במהירות ובדיוק גבוהים. מאפשרת חיפוש מתקדם בתוך הטקסטים המתועדים, אינטגרציה עם אפליקציות שיתוף פעולה נפוצות, ומעקב אחר מטרות ומשימות שנקבעו בפגישה.",
|
436 |
"category": "productivity",
|
437 |
"url": "https://fireflies.ai/",
|
438 |
+
"logo": "https://lh3.googleusercontent.com/KkVwBKtOvxgeFVQjW1pp6N_yfY46aZ5E3oQVc1bUrVaFjCBon4CBSOVTFwz2JEEM4H4",
|
439 |
"icon": "fas fa-microphone-alt",
|
440 |
+
"rating": 3,
|
441 |
"isNew": false,
|
442 |
"isFeatured": false
|
443 |
},
|
444 |
{
|
445 |
"name": "Flowise ai",
|
446 |
+
"description": "Low-code לבניית אפליקציות AI עם זרימות עבודה גרפיות - כולל תמיכה במודלי שפה גדולים, אינטגרציות וניהול API.",
|
447 |
"category": "builder",
|
448 |
"url": "https://flowiseai.com/",
|
449 |
+
"logo": "https://api.pxstudio.pw/uploads/flowise_logo_dark_6c1a356f4868d3deb7864323ff93a0fa_2563a9c0fd.png",
|
450 |
"icon": "fas fa-diagram-project",
|
451 |
"rating": 4,
|
452 |
"isNew": false,
|
|
|
454 |
},
|
455 |
{
|
456 |
"name": "Gamma",
|
457 |
+
"description": "יצירת מצגות תוך שניות בעזרת AI - מתאים לשיווק, הוראה ותכנים עסקיים.",
|
458 |
"category": "presentation",
|
459 |
"url": "https://gamma.app/",
|
460 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDRVr9QYTxtd8eXUP34HZLoEnTNMKG1ffIAg&s",
|
461 |
"icon": "fas fa-chalkboard-teacher",
|
462 |
"rating": 5,
|
463 |
"isNew": false,
|
|
|
465 |
},
|
466 |
{
|
467 |
"name": "Gemini",
|
468 |
+
"description": "הצ'אטבוט של גוגל - מבוסס על מודלים מתקדמים של AI ומחובר לחיפוש בזמן אמת.",
|
469 |
"category": "productivity",
|
470 |
"url": "https://gemini.google.com/",
|
471 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTuy9ucswKvd8dPqg9CvrmJiEH5ngED9xLgrQ&s",
|
472 |
"icon": "fas fa-brain",
|
473 |
"rating": 4,
|
474 |
"isNew": false,
|
|
|
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,
|
485 |
"isNew": false,
|
|
|
490 |
"description": "מערכת AI לסיכום תוכן, חיפוש מתקדם והמלצות מתוך המסמכים שלך ב-GitBook. מצוין לצוותי תוכן ודוקומנטציה.",
|
491 |
"category": "productivity",
|
492 |
"url": "https://docs.gitbook.com/content-editor/searching-your-content/gitbook-ai",
|
493 |
+
"logo": "https://gitbook.gallerycdn.vsassets.io/extensions/gitbook/gitbook-vscode/0.1.0/1728856836197/Microsoft.VisualStudio.Services.Icons.Default",
|
494 |
"icon": "fas fa-book",
|
495 |
"rating": 4,
|
496 |
"isNew": false,
|
|
|
501 |
"description": "עוזר תכנות חכם שמציע קוד ופונקציות שלמות בזמן אמת.",
|
502 |
"category": "coding",
|
503 |
"url": "https://github.com/features/copilot",
|
504 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRA_84-WS_nHtqLPnuvyLEAR17zFDRFuD-7yQ&s",
|
505 |
"icon": "fas fa-code",
|
506 |
+
"rating": 3,
|
507 |
"isNew": false,
|
508 |
"isFeatured": false
|
509 |
},
|
510 |
{
|
511 |
"name": "Glif",
|
512 |
+
"description": "מערכת המרה של תסריטים לטמפלטים ויזואליים - כולל קומיקסים, מצגות וסרטוני שיווק.",
|
513 |
"category": "video",
|
514 |
"url": "https://glif.app/glifs",
|
515 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKttfNsQxQE3HuoPkuiycsbvQcjv-SaFiIRw&s",
|
516 |
"icon": "fas fa-book-open",
|
517 |
"rating": 4,
|
518 |
"isNew": false,
|
|
|
523 |
"description": "פלטפורמה מקוונת המאפשרת למשתמשים ליצור, לערוך ולשתף יישומי ווב בצורה קלה ומהירה. מציעה סביבה ידידותית למתחילים ולמפתחים מנוסים, עם אפשרות ל'רמיקס' פרויקטים קיימים ולהתאימם לצרכים אישיים.",
|
524 |
"category": "builder",
|
525 |
"url": "https://glitch.com/",
|
526 |
+
"logo": "https://p1.hiclipart.com/preview/42/203/660/fish-glitch-computer-software-email-stack-overflow-trello-company-firebase-png-clipart.jpg",
|
527 |
"icon": "fas fa-code",
|
528 |
"rating": 2,
|
529 |
"isNew": false,
|
|
|
531 |
},
|
532 |
{
|
533 |
"name": "GoEnhance",
|
534 |
+
"description": "כלי לשיפור סאונד ויזואלי של סרטונים באמצעות AI - כולל תמלול, ניקוי רעשים, סנכרון ושיפור חוויית הצפייה.",
|
535 |
"category": "video",
|
536 |
"url": "https://www.goenhance.ai/?aff=sagibaron",
|
537 |
+
"logo": "https://cdn-1.webcatalog.io/catalog/goenhance/goenhance-icon-filled-256.webp?v=1719385542423",
|
538 |
"icon": "fas fa-video",
|
539 |
+
"rating": 4,
|
540 |
"isNew": false,
|
541 |
"isFeatured": false
|
542 |
},
|
|
|
545 |
"description": "פלטפורמה חינמית מבית גוגל המנגישה גרסאות מתקדמות וניסיוניות של מודל הבינה המלאכותית Gemini. מאפשרת למשתמשים ללא ידע מוקדם להתנסות בתמלול סרטים, ניתוח קבצי וידאו, סיכומי תוכן, ואף מספקת עוזר קולי המדריך את ��משתמשים במשימות שונות.",
|
546 |
"category": "AI Tools",
|
547 |
"url": "https://aistudio.google.com/",
|
548 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvr3EyhGPtM5HKhe6wz98i_xbcq1-IVmIfAcFRR-OQXCaDtD-cniUT3qlkemNQ1mgMHMA&usqp=CAU",
|
549 |
"icon": "fas fa-robot",
|
550 |
"rating": 5,
|
551 |
"isNew": false,
|
|
|
556 |
"description": "איך ליצור סוכן מבוסס GPT בהתאמה אישית באמצעות OpenAI.",
|
557 |
"category": "productivity",
|
558 |
"url": "https://chatgpt.com/gpts",
|
559 |
+
"logo": "https://static.vecteezy.com/system/resources/previews/021/059/827/non_2x/chatgpt-logo-chat-gpt-icon-on-white-background-free-vector.jpg",
|
560 |
"video": "https://www.youtube.com/embed/iSIWAGgUIcg",
|
561 |
"icon": "fas fa-robot",
|
562 |
"rating": 5,
|
|
|
564 |
"isFeatured": true
|
565 |
},
|
566 |
{
|
567 |
+
"name": "Green API",
|
568 |
+
"description": "שירות API ל-WhatsApp המאפשר שליחה וקבלה של הודעות טקסט, מדיה, מסמכים, מיקום ועוד, ללא צורך בטלפון פיזי. מתאים לפיתוח בוטים, אינטגרציות עם CRM ושליחת קמפיינים.",
|
569 |
+
"category": "messaging",
|
570 |
+
"url": "https://green-api.com/",
|
571 |
+
"logo": "https://green-api.com/favicon.ico",
|
572 |
+
"video": "https://www.youtube.com/embed/s1brnyXRlG4?si=t7WenUAOTt7IrNGN",
|
573 |
+
"icon": "fab fa-whatsapp",
|
574 |
+
"rating": 3,
|
575 |
+
"isNew": false,
|
576 |
+
"isFeatured": false
|
577 |
},
|
578 |
{
|
579 |
"name": "Groq",
|
580 |
"description": "חברה טכנולוגית המתמקדת במתן פתרונות בתחום הבינה המלאכותית, עם דגש על ביצועי אינפרנס מהירים. פיתחה מעבד ייחודי בשם LPU (Language Processing Unit) המותאם לעיבוד יעיל של מודלים גדולים, תוך שמירה על צריכת אנרגיה מופחתת.",
|
581 |
"category": "infrastructure",
|
582 |
"url": "https://groq.com/",
|
583 |
+
"logo": "https://logowik.com/content/uploads/images/groq-ai-icon8580.logowik.com.webp",
|
584 |
"icon": "fas fa-microchip",
|
585 |
"rating": 5,
|
586 |
"isNew": false,
|
|
|
591 |
"description": "כלי כתיבה אוטומטי שעוזר ביצירת תוכן שיווקי.",
|
592 |
"category": "writing",
|
593 |
"url": "https://www.copy.ai",
|
594 |
+
"logo": "https://pbs.twimg.com/profile_images/1882909654545551360/QPAmppjU_400x400.jpg",
|
595 |
"icon": "fas fa-keyboard",
|
596 |
"rating": 3,
|
597 |
"isNew": false,
|
|
|
599 |
},
|
600 |
{
|
601 |
"name": "HappyScribe",
|
602 |
+
"description": "תמלול אודיו ווידאו - תומך בעברית. מאפשר הפקת כתוביות, תרגום, וסנכרון עם עריכה.",
|
603 |
"category": "writing",
|
604 |
"url": "https://www.happyscribe.com/",
|
605 |
+
"logo": "https://www.happyscribe.com/favicon/redesign/favicon-32x32.png",
|
606 |
"icon": "fas fa-file-audio",
|
607 |
"rating": 4,
|
608 |
"isNew": false,
|
|
|
610 |
},
|
611 |
{
|
612 |
"name": "Hedra",
|
613 |
+
"description": "כלי ליצירת דמויות מדברות מטקסט (כולל ליפסינק) עם שליטה קולית ושפתית - בדגש על שימוש חופשי.",
|
614 |
"category": "video",
|
615 |
"url": "https://www.hedra.com/",
|
616 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpTfbFaKEsInHfE3bdtHBFOGgNueOfi4IbXw&s",
|
617 |
"icon": "fas fa-user-alt",
|
618 |
"rating": 4,
|
619 |
"isNew": false,
|
|
|
624 |
"description": "יצירת אוואטרים מדברים מטקסט (��יפסינק), כולל שינוי שפה וסגנון. מתאים ליצירת סרטוני תדמית אישיים.",
|
625 |
"category": "video",
|
626 |
"url": "https://app.heygen.com/",
|
627 |
+
"logo": "https://app.heygen.com/favicon.ico",
|
628 |
"icon": "fas fa-user-circle",
|
629 |
"rating": 5,
|
630 |
"isNew": false,
|
|
|
635 |
"description": "פלטפורמת בינה מלאכותית המאפשרת יצירת סרטונים עם תנועות מצלמה קולנועיות, ללא צורך בציוד צילום. מציעה מעל 50 תנועות מצלמה מוכנות מראש, כולל 'Bullet Time' ו-'Dolly Zoom', ליצירת תוכן ויזואלי מרשים בקלות.",
|
636 |
"category": "video",
|
637 |
"url": "https://higgsfield.ai/",
|
638 |
+
"logo": "https://higgsfield.ai/favicon.ico",
|
639 |
"icon": "fas fa-video",
|
640 |
+
"rating": 3,
|
641 |
"isNew": false,
|
642 |
"isFeatured": false
|
643 |
},
|
|
|
646 |
"description": "אירוח אתרים במחירים נוחים, עם ביצועים טובים, SSL חינם, ממשק קל וניהול WordPress מהיר.",
|
647 |
"category": "hosting",
|
648 |
"url": "https://www.hostinger.com/",
|
649 |
+
"logo": "https://cdn.worldvectorlogo.com/logos/hostinger.svg",
|
650 |
"icon": "fas fa-server",
|
651 |
"rating": 4,
|
652 |
"isNew": false,
|
|
|
657 |
"description": "הבית של מודלים מבוססי AI, כולל קוד פתוח, דוגמאות לשימוש, וקהילה ענקית.",
|
658 |
"category": "platform",
|
659 |
"url": "https://huggingface.co/",
|
660 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
661 |
"icon": "fas fa-hands-helping",
|
662 |
+
"rating": 4,
|
663 |
"isNew": false,
|
664 |
"isFeatured": true
|
665 |
},
|
|
|
668 |
"description": "חברת Hume פיתחה את EVI, ממשק קול אמפתי המבוסס על בינה מלאכותית, המאפשר אינטראקציות קוליות טבעיות ומגיב בהתאם לרגשות המשתמש. EVI מזהה את טון הדיבור של המשתמש ומתאימה את תגובותיה בהתאם, מה שהופך את התקשורת עם AI לאנושית ומובנת יותר.",
|
669 |
"category": "ai-agents",
|
670 |
"url": "http://hume.ai/",
|
671 |
+
"logo": "https://logowik.com/content/uploads/images/hume-ai1720994953.logowik.com.webp",
|
672 |
"icon": "fas fa-microphone-alt",
|
673 |
+
"rating": 4,
|
674 |
"isNew": false,
|
675 |
"isFeatured": false
|
676 |
},
|
677 |
{
|
678 |
"name": "Ideogram",
|
679 |
+
"description": "כלי ליצירת תמונות עם טקסט ברור - עיצוב פוסטרים, מודעות, סטיקרים ועוד.",
|
680 |
"category": "image",
|
681 |
"url": "https://ideogram.ai/",
|
682 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRG4SEg6NSElTZm5tyNiwdJeiOu-oIveoikeQ&s",
|
683 |
"icon": "fas fa-font",
|
684 |
"rating": 4,
|
685 |
"isNew": false,
|
|
|
690 |
"description": "מודל AI שמאפשר להלביש וירטואלית בגדים על דמויות. כולל עיבוד תמונה והתאמות מדויקות.",
|
691 |
"category": "image",
|
692 |
"url": "https://replicate.com/cuuupid/idm-vton",
|
693 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7BWkd-_2Mai34fI4zacUOJqyIQ84txeBYtQ&s",
|
694 |
"icon": "fas fa-tshirt",
|
695 |
"rating": 4,
|
696 |
"isNew": false,
|
|
|
701 |
"description": "מודל AI שמאפשר להלביש וירטואלית בגדים על דמויות. כולל עיבוד תמונה והתאמות מדויקות.",
|
702 |
"category": "image",
|
703 |
"url": "https://huggingface.co/spaces/yisol/IDM-VTON",
|
704 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
705 |
"icon": "fas fa-tshirt",
|
706 |
"rating": 4,
|
707 |
"isNew": false,
|
|
|
712 |
"description": "המרת תמונות רגילות לתמונות תלת ממד שנראות חיים! מתאים למצגות, שיווק, ומציאות מדומה.",
|
713 |
"category": "image",
|
714 |
"url": "https://app.immersity.ai/upload",
|
715 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSe1EtDXczp4AovO4su8a3w5KBn3pIYVv1lfA&s",
|
716 |
"icon": "fas fa-vr-cardboard",
|
717 |
"rating": 4,
|
718 |
"isNew": false,
|
|
|
720 |
},
|
721 |
{
|
722 |
"name": "Ip-Adapter-FaceID",
|
723 |
+
"description": "שילוב תמונות AI עם הפנים שלך - לזיהוי, שילוב דמויות, או פרצופים ממותגים.",
|
724 |
"category": "image",
|
725 |
"url": "https://huggingface.co/spaces/multimodalart/Ip-Adapter-FaceID",
|
726 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
727 |
"icon": "fas fa-user-check",
|
728 |
"rating": 4,
|
729 |
"isNew": false,
|
730 |
"isFeatured": false
|
731 |
},
|
732 |
{
|
733 |
+
"name": "ivrit.ai - תמלול קולי בעברית",
|
734 |
+
"description": "בסרטון זה תלמדו כיצד לתמלל קבצי קול בעברית בצורה פשוטה, מהירה ומדויקת. בין אם אתם סטודנטים, אנשי מקצוע או חובבי טכנולוגיה - תכירו את ivrit.ai, הכלי המושלם להמרת הקלטות לטקסט בעברית.",
|
735 |
"category": "audio",
|
736 |
"url": "https://www.ivrit.ai/he/174-2/",
|
737 |
+
"logo": "https://media.licdn.com/dms/image/v2/D4D0BAQExDpDLE8cI2A/company-logo_200_200/company-logo_200_200/0/1711734529123/ivrit_ai_logo?e=2147483647&v=beta&t=233d5soRIPDZ7vSQMh1dv_-D-ZdRcXVKk3xkYnor7qU",
|
738 |
"video": "https://www.youtube.com/embed/MQy9afP0VKw",
|
739 |
"icon": "fas fa-microphone-alt",
|
740 |
"rating": 3,
|
741 |
"isNew": false,
|
742 |
"isFeatured": false
|
743 |
+
},
|
744 |
{
|
745 |
"name": "Jasper",
|
746 |
"description": "מחולל תוכן אוטומטי שעוזר בכתיבת טקסטים שיווקיים ובלוגים.",
|
747 |
"category": "writing",
|
748 |
"url": "https://www.jasper.ai",
|
749 |
+
"logo": "https://cdn.prod.website-files.com/60e5f2de011b86acebc30db7/666f33302a54fab58083c231_Favicon.png",
|
750 |
"icon": "fas fa-pen-fancy",
|
751 |
"rating": 4,
|
752 |
"isNew": false,
|
|
|
757 |
"description": "כלי שמאפשר המרת תמונות לקובץ PDF אחד. מושלם לשליחת דוחות, קבלות או עבודות.",
|
758 |
"category": "utility",
|
759 |
"url": "https://convertio.co/image-converter/",
|
760 |
+
"logo": "https://static.convertio.co/img/apple-touch-icon-180x180-precomposed.png",
|
761 |
"icon": "fas fa-file-pdf",
|
762 |
"rating": 4,
|
763 |
"isNew": false,
|
|
|
765 |
},
|
766 |
{
|
767 |
"name": "Julius",
|
768 |
+
"description": "כלי המאפשר יצירת דוחות וניתוחים מתוך טבלאות בצורה טבעית - פשוט שואלים שאלה ומקבלים תשובה חכמה.",
|
769 |
"category": "data",
|
770 |
"url": "https://julius.ai/",
|
771 |
+
"logo": "https://www.datocms-assets.com/96965/1732241222-ai-apps-julius-logo.png",
|
772 |
"icon": "fas fa-table",
|
773 |
"rating": 4,
|
774 |
"isNew": false,
|
|
|
776 |
},
|
777 |
{
|
778 |
"name": "Kapwing",
|
779 |
+
"description": "כלי לעריכת וידאו מבוסס דפדפן - כולל כתוביות אוטומטיות, חיתוך, התאמה לפלטפורמות חברתיות ועוד.",
|
780 |
"category": "video",
|
781 |
"url": "https://www.kapwing.com/",
|
782 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSNUK5RcbW22thzmrJ49Nijo4XDshBtK7JdiA&s",
|
783 |
"icon": "fas fa-video",
|
784 |
"rating": 4,
|
785 |
"isNew": false,
|
|
|
787 |
},
|
788 |
{
|
789 |
"name": "Kits",
|
790 |
+
"description": "מנוע דיבור מוזיקלי - מאפשר להלביש קול על מנגינה קיימת. מושלם ליצירת דמוים וגרסאות.",
|
791 |
"category": "audio",
|
792 |
"url": "https://www.kits.ai/",
|
793 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS6UB3XolFA_74fzNdIovMihwj3Fqa1O0tDTg&s",
|
794 |
"icon": "fas fa-headphones-alt",
|
795 |
"rating": 4,
|
796 |
"isNew": false,
|
|
|
801 |
"description": "מחולל תמונות וסרטונים בעזרת בינה מלאכותית, המציע מגוון רחב של אפשרויות ליצירת תוכן ויזואלי מרשים.",
|
802 |
"category": "video_generation",
|
803 |
"url": "https://klingai.com/",
|
804 |
+
"logo": "https://play-lh.googleusercontent.com/JOfjXqsShK8j1aGBc1xlHBnatoRKRwLsGuoFZUAvKksaEPvK71eLwSg4FbKlky9Es-s",
|
805 |
"icon": "fas fa-video",
|
806 |
"rating": 4,
|
807 |
"isNew": false,
|
|
|
809 |
},
|
810 |
{
|
811 |
"name": "Krea",
|
812 |
+
"description": "יצירת תוכן חזותי בזמן אמת בעזרת AI - תומך בגרפיקה, ציור, מיתוג ועיצוב. מושלם ליוצרים.",
|
813 |
"category": "design",
|
814 |
"url": "https://www.krea.ai/home",
|
815 |
+
"logo": "https://is1-ssl.mzstatic.com/image/thumb/Purple116/v4/08/9f/30/089f3087-aeec-eab9-bbf8-17d972525282/AppIcon-0-0-1x_U007emarketing-0-10-0-85-220.png/1024x1024bb.png",
|
816 |
"icon": "fas fa-pen-nib",
|
817 |
+
"rating": 4,
|
818 |
"isNew": false,
|
819 |
"isFeatured": false
|
820 |
},
|
821 |
{
|
822 |
+
"name": "LensGo - המרת וידאו לאנימציה",
|
823 |
"description": "המרו כל סרטון לאנימציה מדהימה בקלות עם LensGo! צפו במדריך המלא, גלו את כל השלבים ליצירת וידאו מונפש, והפכו את הסרטונים שלכם ליצירות אמנות חיות.",
|
824 |
+
"url": "https://lensgo.ai/",
|
825 |
+
"logo": "https://appscribed.com/wp-content/uploads/2024/09/lensgo-ai-logo-300x233.png",
|
826 |
"video": "https://www.youtube.com/embed/wtOGF-Y729Q?si=98VukXCL9NdM6fai",
|
827 |
"icon": "fas fa-magic",
|
828 |
"rating": 4,
|
|
|
831 |
},
|
832 |
{
|
833 |
"name": "Leonardo",
|
834 |
+
"description": "כלי ליצירת תמונות מדויקות ואומנותיות מבוססות AI - כולל טיוטות וגרסאות.",
|
835 |
"category": "image",
|
836 |
"url": "https://leonardo.ai/",
|
837 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5AwOC13iesh_sl5V1FYIMRR98x2zDd6jfKg&s",
|
838 |
"icon": "fas fa-palette",
|
839 |
+
"rating": 4,
|
840 |
"isNew": false,
|
841 |
"isFeatured": false
|
842 |
},
|
843 |
{
|
844 |
"name": "Live Portrait",
|
845 |
+
"description": "החייאת פורטרט - הפוך תמונה סטטית לדמות מדברת עם תנועה ושפתיים מסתנכרנות.",
|
846 |
"category": "video",
|
847 |
"url": "https://huggingface.co/spaces/KwaiVGI/LivePortrait",
|
848 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYDvVvSTSxKKvBwZAf9c9UWMY2yOfZvPq46g&s",
|
849 |
"video": "https://www.youtube.com/embed/n2pyFU_iSNE?si=G-uJ-FeKbB72dVHD",
|
850 |
"icon": "fas fa-user",
|
851 |
"rating": 5,
|
|
|
854 |
},
|
855 |
{
|
856 |
"name": "LM Studio",
|
857 |
+
"description": "ממשק שמריץ מודלים של שפה באופן מקומי על המחשב שלך - כולל תמיכה בעבודה גם בלי אינטרנט.",
|
858 |
"category": "nlp",
|
859 |
"url": "https://lmstudio.ai/",
|
860 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9E-3L_CWBzGPCMxZ66Q3W8quGamRMqFR7_g&s",
|
861 |
"icon": "fas fa-laptop-code",
|
862 |
"rating": 4,
|
863 |
"isNew": false,
|
|
|
868 |
"description": "פלטפורמה המאפשרת להפוך רעיונות לאפליקציות מתפקדות תוך שניות, ללא צורך בכתיבת קוד. מתאימה ליזמים, צוותי מוצר ומעצבים המעוניינים ליצור פרוטוטיפים במהירות.",
|
869 |
"category": "coding",
|
870 |
"url": "https://lovable.dev/",
|
871 |
+
"logo": "https://lovable.dev/icon.svg?3d7ac3d2bb57ecbe",
|
872 |
"icon": "fas fa-magic",
|
873 |
"rating": 4,
|
874 |
"isNew": false,
|
875 |
"isFeatured": false
|
876 |
},
|
877 |
{
|
878 |
+
"name": "Luma",
|
879 |
+
"description": "פלטפורמה המאפשרת יצירת סרטונים מקצועיים באיכות גבוהה מטקסט ותמונות, ללא צורך בידע טכני מוקדם. מציעה תנועות מצלמה חלקות, פיזיקה מדויקת ותוצרים קולנועיים מרשימים.",
|
880 |
+
"category": "video",
|
881 |
+
"url": "https://lumalabs.ai/",
|
882 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS8pA_JbjPjH1619YtHqxPGFhotcg5ArtDW1w&s",
|
883 |
+
"icon": "fas fa-video",
|
884 |
+
"rating": 3,
|
885 |
+
"isNew": false,
|
886 |
+
"isFeatured": false
|
887 |
+
},
|
888 |
{
|
889 |
"name": "Make",
|
890 |
+
"description": "פלטפורמה עוצמתית לאוטומציה בין שירותים, אפליקציות ו-API - כולל תהליכים מורכבים.",
|
891 |
"category": "automation",
|
892 |
"url": "https://www.make.com/",
|
893 |
+
"logo": "https://cdn.prod.website-files.com/5f15081919fdf673994ab5fd/658d1160346d50ccbcb96f6f_Make-Logo.svg",
|
894 |
"icon": "fas fa-network-wired",
|
895 |
"rating": 5,
|
896 |
"isNew": false,
|
|
|
901 |
"description": "סוכן AI אוטונומי המאפשר ביצוע משימות מורכבות באופן עצמאי, כולל כתיבת קוד, ניתוח נתונים ותכנון פרויקטים, ללא צורך בהתערבות מתמשכת של המשתמש.",
|
902 |
"category": "ai-agents",
|
903 |
"url": "https://manus.im/",
|
904 |
+
"logo": "https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/manus.png",
|
905 |
"icon": "fas fa-robot",
|
906 |
"rating": 4,
|
907 |
"isNew": false,
|
|
|
909 |
},
|
910 |
{
|
911 |
"name": "Mendable",
|
912 |
+
"description": "פלטפורמה להוספת חוויית חיפוש תשובות חכמה לאתרים - כולל תמיכה במקורות שונים ויכולת להבין שאלות בשפה טבעית.",
|
913 |
"category": "search",
|
914 |
"url": "https://www.mendable.ai/",
|
915 |
+
"logo": "https://www.mendable.ai/Frame%20566%20(2).png",
|
916 |
"icon": "fas fa-search-plus",
|
917 |
"rating": 4,
|
918 |
"isNew": false,
|
|
|
920 |
},
|
921 |
{
|
922 |
"name": "Midjourney",
|
923 |
+
"description": "אחד הכלים הפופולריים בעולם ליצירת תמונות מתיאורים טקסטואליים - תוצאות ברמה מטורפת.",
|
924 |
"category": "image",
|
925 |
"url": "https://www.midjourney.com/home",
|
926 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3694hy99SXrCLfoEKdCuBjtub6XSzgv5Bhw&s",
|
927 |
"icon": "fas fa-brush",
|
928 |
+
"rating": 4,
|
929 |
"isNew": false,
|
930 |
"isFeatured": false
|
931 |
},
|
932 |
{
|
933 |
+
"name": "Miocreate - החלפת פנים בתמונות",
|
934 |
+
"description": "החליפו פנים בתמונות בקלות ובמהירות באמצעות כלי חינמי וידידותי. פשוט מעלים תמונה, בוחרים את הפנים הרצויות - והתוצאה מוכנה לשיתוף.",
|
935 |
+
"url": "https://www.miocreate.com/face-swap.html",
|
936 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpqVLb_otnj71EGK2lTISxwjVlh6QuXIfxE3nE4VEv8JvqpIL88Pf8LE26fv1eq-uwrCg&usqp=CAU",
|
937 |
+
"category": "image",
|
938 |
+
"icon": "fas fa-user-edit",
|
939 |
+
"video": "https://www.youtube.com/embed/jVdK878I_g8?si=Gcadup5I71DtUULo",
|
940 |
+
"isNew": false,
|
941 |
+
"isFeatured": false,
|
942 |
+
"rating": 4
|
943 |
},
|
944 |
|
945 |
{
|
946 |
"name": "MMAudio",
|
947 |
"description": "פלטפורמה הממירה סרטונים שקטים לחוויות שמע עשירות באמצעות סינתזה חכמה של צלילים. הטכנולוגיה המתקדמת מנתחת את תוכן הווידאו ומייצרת פסי קול מותאמים אישית, כולל אפקטים קוליים, רעשי רקע ואלמנטים אטמוספריים, תוך דקות.",
|
948 |
"category": "audio",
|
949 |
+
"url": "https://mmaudio.net/",
|
950 |
"logo": "https://mmaudio.net/_next/image?url=%2Fimages%2Flogo.png&w=384&q=75",
|
951 |
"icon": "fas fa-music",
|
952 |
+
"rating": 4,
|
953 |
"isNew": false,
|
954 |
"isFeatured": false
|
955 |
},
|
956 |
{
|
957 |
"name": "Mobirise",
|
958 |
+
"description": "כלי לבניית אתרים ללא קוד - מצוין לנחיתות, תיקים אישיים, וללקוחות קטנים.",
|
959 |
"category": "builder",
|
960 |
"url": "https://mobirise.com/",
|
961 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBon130uRIBk2VAhiMmyovUqRPtoRg1UZ6ew&s",
|
962 |
"icon": "fas fa-globe",
|
963 |
"rating": 3,
|
964 |
"isNew": false,
|
|
|
971 |
"url": "https://www.moonvalley.com/",
|
972 |
"logo": "https://app.ashbyhq.com/api/images/org-theme-logo/08d1f550-f33d-4dc5-9fea-f206aed1150d/055d845f-f017-4293-ad0b-4cb8404d0cd1/3689e459-16c8-4704-b04b-873e039ac5da.png",
|
973 |
"icon": "fas fa-film",
|
974 |
+
"rating": 3,
|
975 |
"isNew": false,
|
976 |
"isFeatured": false
|
977 |
},
|
|
|
980 |
"description": "אתר פשוט, שלא דורש מכם הרשמה- עם תא חיפוש פשוט שבו אתם כותבים משפט אחד והוא: על מה אתם רוצים להבין את ה”טיים ליין” ההיסטורי",
|
981 |
"category": "video",
|
982 |
"url": "https://mylens.ai/",
|
983 |
+
"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",
|
984 |
"video": "https://www.youtube.com/embed/tNtbOZYMgcs?si=b-e6nO_oe2GbaMBT",
|
985 |
"icon": "fas fa-video",
|
986 |
+
"rating": 3,
|
987 |
"isNew": false,
|
988 |
"isFeatured": false
|
989 |
},
|
|
|
994 |
"url": "https://www.napkin.ai/",
|
995 |
"logo": "https://aimodelab.com/wp-content/uploads/2024/08/logo-napkin-ai.webp",
|
996 |
"icon": "fas fa-project-diagram",
|
997 |
+
"rating": 4,
|
998 |
"isNew": false,
|
999 |
"isFeatured": false
|
1000 |
},
|
|
|
1025 |
"description": "סביבת עבודה חכמה שעוזרת בניהול פרויקטים, רשימות ומידע.",
|
1026 |
"category": "productivity",
|
1027 |
"url": "https://www.notion.so",
|
1028 |
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Notion-logo.svg/2048px-Notion-logo.svg.png",
|
1029 |
"icon": "fas fa-list-alt",
|
1030 |
"rating": 4,
|
1031 |
"isNew": false,
|
|
|
1049 |
"url": "https://ollama.com/",
|
1050 |
"logo": "https://ollama.com/public/ollama.png",
|
1051 |
"icon": "fas fa-cube",
|
1052 |
+
"rating": 4,
|
1053 |
"isNew": false,
|
1054 |
"isFeatured": false
|
1055 |
},
|
|
|
1058 |
"description": "ממיר טקסט לדיבור המאפשר יצירת קובצי אודיו איכותיים בעברית ובשפות נוספות, תוך שימוש במנוע הדיבור המתקדם של OpenAI. מתאים ליצירת פודקא��טים, ספרי אודיו ותכנים קוליים נוספים.",
|
1059 |
"category": "audio",
|
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": 4,
|
1064 |
"isNew": false,
|
|
|
1066 |
},
|
1067 |
{
|
1068 |
"name": "PartyRock",
|
1069 |
+
"description": "כלי של Amazon לבניית אפליקציות בינה מלאכותית - בלי כתיבת קוד. פשוט לגרור ולהריץ.",
|
1070 |
"category": "builder",
|
1071 |
"url": "https://partyrock.aws/apps",
|
1072 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgvmjtTucdIL0890jJctcX2ca08t6p6Su8jw&s",
|
|
|
1088 |
},
|
1089 |
{
|
1090 |
"name": "pexels",
|
1091 |
+
"description": "אתר שמציע תמונות וסרטוני וידאו באיכות גבוהה - בחינם ולשימוש מסחרי, ללא צורך בקרדיט. אידיאלי ליוצרים ומעצבים.",
|
1092 |
"category": "media",
|
1093 |
"url": "https://www.pexels.com/",
|
1094 |
"logo": "https://cdn-1.webcatalog.io/catalog/pexels/pexels-icon-filled-256.png?v=1737601148637",
|
|
|
1126 |
"url": "https://pika.art/",
|
1127 |
"logo": "https://mms.businesswire.com/media/20231127388431/en/1953851/5/WhatsApp_Image_2023-11-27_at_19.10.06_%281%29.jpg?download=1",
|
1128 |
"icon": "fas fa-film",
|
1129 |
+
"rating": 4,
|
1130 |
"isNew": false,
|
1131 |
"isFeatured": false
|
1132 |
},
|
|
|
1143 |
},
|
1144 |
{
|
1145 |
"name": "Play",
|
1146 |
+
"description": "מנוע דיבור מבוסס AI עם קולות טבעיים - להמרת טקסט לפודקאסטים, קריינות וסרטונים.",
|
1147 |
"category": "audio",
|
1148 |
"url": "https://play.ht/",
|
1149 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT9bniOBfVBfE8IEYRz6eKaCqhx6CdhSfqEMQ&s",
|
|
|
1154 |
},
|
1155 |
{
|
1156 |
"name": "Pmfm",
|
1157 |
+
"description": "פלטפורמה לבניית אפליקציות AI ללא קוד - תומכת באינטגרציות ושמירה אוטומטית.",
|
1158 |
"category": "builder",
|
1159 |
"url": "https://pmfm.ai/",
|
1160 |
"logo": "https://pmfm.ai/img/favico.ico",
|
|
|
1164 |
"isFeatured": false
|
1165 |
},
|
1166 |
{
|
1167 |
+
"name": "PromeAI - הפיכת שרטוטים לתמונות ריאליסטיות",
|
1168 |
+
"description": "הפכו שרטוטים או סקיצות לתמונות ריאליסטיות מרהיבות בלחיצת כפתור. הכלי מאפשר המרה מהירה של ציורים פשוטים ליצירות גרפיות מדויקות ומעוצבות.",
|
1169 |
+
"url": "https://www.promeai.pro",
|
1170 |
+
"logo": "https://cdn-1.webcatalog.io/catalog/promeai-pro/promeai-pro-icon.png?v=1725958915171",
|
1171 |
+
"category": "image",
|
1172 |
+
"icon": "fas fa-drafting-compass",
|
1173 |
+
"video": "https://www.youtube.com/embed/ti8R4YaDm8Y?si=9bT11moSTT660kpZ",
|
1174 |
+
"isNew": false,
|
1175 |
+
"isFeatured": false,
|
1176 |
+
"rating": 4
|
1177 |
+
},
|
1178 |
{
|
1179 |
"name": "QR Code monkey",
|
1180 |
+
"description": "יצירת קודי QR לכל מטרה - כולל קישורים, אנשי קשר, מיילים ועוד.",
|
1181 |
"category": "utility",
|
1182 |
"url": "https://www.qrcode-monkey.com/#vcard",
|
1183 |
"logo": "https://www.qrcode-monkey.com/img/favicon.ico",
|
|
|
1187 |
"isFeatured": false
|
1188 |
},
|
1189 |
{
|
1190 |
+
"name": "Ready Player Me - יצירת אווטאר אישי תלת־ממדי",
|
1191 |
+
"description": "צרו אווטאר תלת־ממדי מותאם אישית תוך דקות - מושלם למשחקים, מציאות מדומה, ועולמות דיגיטליים. פשוט, מהיר ומרשים.",
|
1192 |
+
"url": "https://readyplayer.me/",
|
1193 |
+
"logo": "https://cdn.prod.website-files.com/647a5cfe9ae504d687e5d999/66759e4c5f3ace375e35920c_6525501878cb06ac26a1a7a6_integration-rpm-200x200%20(1).png",
|
1194 |
+
"category": "design",
|
1195 |
+
"icon": "fas fa-user-astronaut",
|
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",
|
1203 |
+
"description": "החלפת פנים בתמונות בקליק - מצחיק, חזק, ומומלץ למי שאוהב לשגע את החברים.",
|
1204 |
"category": "image",
|
1205 |
"url": "https://remaker.ai/face-swap-free/",
|
1206 |
+
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKAmXvWmba4D5bDUXdTCDD_j5UZfTS5Z_I9g&s",
|
1207 |
"icon": "fas fa-smile-beam",
|
1208 |
"rating": 4,
|
1209 |
"isNew": false,
|
|
|
1211 |
},
|
1212 |
{
|
1213 |
"name": "Replay",
|
1214 |
+
"description": "כלי לזיהוי דוברים - מגלה מי אמר מה, מתי, ואיך. מושלם לפרודקאסטים, תמלולים וניתוח שיחות.",
|
1215 |
"category": "audio",
|
1216 |
"url": "https://www.tryreplay.io/",
|
1217 |
"logo": "https://production-v2.muse-cdn.com/application-icon-images/e1c7cf55-0480-478f-b966-c010031ce3a1.png",
|
|
|
1222 |
},
|
1223 |
{
|
1224 |
"name": "Run Diffusion",
|
1225 |
+
"description": "פלטפורמה להרצת Stable Diffusion בענן עם ממשק גרפי - תומך ב-Automatic1111, ComfyUI, Foocus ועוד, בלי צורך בהתקנה מקומית.",
|
1226 |
"category": "image",
|
1227 |
"url": "https://rundiffusion.com/",
|
1228 |
"logo": "https://www.rundiffusion.com/favicon.svg",
|
1229 |
"icon": "fas fa-cloud",
|
1230 |
+
"rating": 3,
|
1231 |
"isNew": false,
|
1232 |
"isFeatured": false
|
1233 |
},
|
|
|
1244 |
},
|
1245 |
{
|
1246 |
"name": "Sketch meta lab",
|
1247 |
+
"description": "כלי לילדים לציור חווייתי - יצירת דמויות בתנועה שמתעוררות לחיים.",
|
1248 |
"category": "design",
|
1249 |
"url": "https://sketch.metademolab.com/canvas",
|
1250 |
"logo": "https://companieslogo.com/img/orig/META-4767da84.png?t=1720244492",
|
|
|
1255 |
},
|
1256 |
{
|
1257 |
"name": "Stable Diffusion",
|
1258 |
+
"description": "גרסת אינטרנט של Stable Diffusion - יצירת תמונות מרהיבות בלי להוריד כלום.",
|
1259 |
"category": "image",
|
1260 |
"url": "https://stablediffusionweb.com/",
|
1261 |
"logo": "https://assets.wheelhouse.com/media/_solution_logo_04032024_26265377.png",
|
1262 |
"icon": "fas fa-project-diagram",
|
1263 |
+
"rating": 3,
|
1264 |
"isNew": false,
|
1265 |
"isFeatured": false
|
1266 |
},
|
1267 |
{
|
1268 |
"name": "Studio Nebius",
|
1269 |
+
"description": "פלטפורמת ניתוח AI לצוותים עסקיים - כולל המלצות, ניתוחי ביצועים ודוחות חכמים.",
|
1270 |
"category": "productivity",
|
1271 |
"url": "https://studio.nebius.ai/",
|
1272 |
+
"logo": "https://studio.nebius.com/favicon-96x96.png",
|
1273 |
"icon": "fas fa-chart-line",
|
1274 |
"rating": 4,
|
1275 |
"isNew": false,
|
1276 |
"isFeatured": false
|
1277 |
},
|
1278 |
{
|
1279 |
+
"name": "Suno - יצירת שירים בעזרת בינה מלאכותית",
|
1280 |
+
"description": "הפלטפורמה המובילה ליצירת שירים מקוריים בשניות - כולל תמיכה מדהימה בעברית! הזינו טקסט, בחרו סגנון, ו-Suno תפיק לכם שיר מקצועי, קליט ומוכן לפרסום.",
|
1281 |
+
"url": "https://suno.com/invite/@sagi",
|
1282 |
+
"logo": "https://cdn-1.webcatalog.io/catalog/suno-ai/suno-ai-icon-filled-256.png?v=1742778115135",
|
1283 |
+
"category": "audio",
|
1284 |
+
"icon": "fas fa-music",
|
1285 |
+
"video": "https://www.youtube.com/embed/ciAxfRJ0w9c?si=lGCe8oowflaRy0gs",
|
1286 |
+
"isNew": false,
|
1287 |
+
"isFeatured": true,
|
1288 |
+
"rating": 5
|
1289 |
+
},
|
1290 |
{
|
1291 |
"name": "Synthesia",
|
1292 |
"description": "יצירת סרטונים מקצועיים עם אווטרים קוליים מבוססי AI.",
|
|
|
1300 |
},
|
1301 |
{
|
1302 |
"name": "Theres an AI for that",
|
1303 |
+
"description": "מאגר כלים אדיר - כל מה שחשבת עליו, כבר מישהו בנה עם AI. כולל חיפוש לפי תחום.",
|
1304 |
"category": "directory",
|
1305 |
"url": "https://theresanaiforthat.com/",
|
1306 |
"logo": "https://theresanaiforthat.com/favicon-large.png",
|
|
|
1311 |
},
|
1312 |
{
|
1313 |
"name": "TimeOS",
|
1314 |
+
"description": "מזכירות AI לפגישות - כולל סיכומים אוטומטיים לזום, קישורים, מעקב משימות ושיתוף.",
|
1315 |
"category": "productivity",
|
1316 |
"url": "https://www.timeos.ai/",
|
1317 |
"logo": "https://cdn.prod.website-files.com/64d23f0719057c157e4aaef9/64e6072ab6292fb6b703de3b_Favicon.png",
|
|
|
1346 |
},
|
1347 |
{
|
1348 |
"name": "Yepic",
|
1349 |
+
"description": "המרת טקסטים לווידאו עם דמויות מדברות - כולל תמיכה בשפות רבות וליפסינק אוטומטי.",
|
1350 |
"category": "video",
|
1351 |
"url": "https://www.yepic.ai/",
|
1352 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT6afB6NlqYkWNga1aBuFSyOi_spDZ3EY5msA&s",
|
|
|
1356 |
"isFeatured": false
|
1357 |
},
|
1358 |
{
|
1359 |
+
"name": "Vibe - תמלול אודיו חינמי",
|
1360 |
+
"description": "תוכנה חינמית לתמלול קבצי אודיו ווידאו במחשב האישי, ללא הגבלת זמן. תומכת בעברית ובשפות נוספות, עם שמירה מלאה על פרטיות - הכל מתבצע מקומית.",
|
1361 |
+
"url": "https://thewh1teagle.github.io/vibe/",
|
1362 |
+
"logo": "https://thewh1teagle.github.io/vibe/favicon.ico",
|
1363 |
+
"category": "transcription",
|
1364 |
+
"icon": "fas fa-microphone-alt",
|
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",
|
1372 |
"description": "פלטפורמה חינמית ליצירת סרטונים באמצעות בינה מלאכותית, המציעה מעל 1,500 אווטרים ריאליסטיים, 1,380 קולות AI ב-140 שפות, ו-2,800 תבניות מוכנות לשימוש. מאפשרת יצירת תוכן וידאו מקצועי במהירות ובקלות.",
|
|
|
1385 |
"url": "https://viggle.ai/",
|
1386 |
"logo": "https://img.utdstc.com/icon/641/07d/64107d3819bd948741ec473be1183cede7fe7cd81a231b9756876d5489a36210:200",
|
1387 |
"icon": "fas fa-running",
|
1388 |
+
"rating": 4.2,
|
1389 |
"isNew": false,
|
1390 |
"isFeatured": true
|
1391 |
},
|
1392 |
{
|
1393 |
"name": "Vmake",
|
1394 |
+
"description": "שיפור איכות וידאו בלחיצת כפתור - חדות, צבעים, ותנועה. בונוס: נראה כאילו השתמשת בעריכת פרסומת סופרבול.",
|
1395 |
"category": "video",
|
1396 |
"url": "https://vmake.ai/video-enhancer/upload",
|
1397 |
"logo": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/0a/b0/61/0ab061e9-6e6f-efd1-2e73-522992cc6bd0/AppIcon-0-0-1x_U007emarketing-0-6-0-85-220.png/1200x600wa.png",
|
|
|
1402 |
},
|
1403 |
{
|
1404 |
"name": "UChat",
|
1405 |
+
"description": "פלטפורמת בניית צ’אטבוטים מתקדמת - כולל אוטומציות, ווב-הוקים, אינטגרציה לוואטסאפ ועוד.",
|
1406 |
"category": "automation",
|
1407 |
"url": "https://www.uchat.com.au/",
|
1408 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_tuBrSc8UNIbcUFLA1Dsj1B2TJB1jbvUiIw&s",
|
|
|
1412 |
"isFeatured": false
|
1413 |
},
|
1414 |
{
|
1415 |
+
"name": "שכפול קולות עם Weights.gg",
|
1416 |
+
"description": "שכפלו כל קול בקלות ובמהירות באמצעות Weights.gg. העלו קובץ אודיו או קישור, ובחרו מודל קולי ליצירת תוצאה מותאמת אישית.",
|
1417 |
+
"url": "https://weights.gg/",
|
1418 |
+
"logo": "https://weights.gg/favicon.ico",
|
1419 |
+
"category": "voice",
|
1420 |
+
"icon": "fas fa-robot",
|
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",
|
1428 |
+
"description": "נגישות קולית בוואטסאפ - כולל תמלול אוטומטי של הודעות קוליות והצגה ויזואלית שלהן.",
|
1429 |
"category": "accessibility",
|
1430 |
"url": "https://api.whatsapp.com/send?phone=18002428478&text=הי מה שלומך?",
|
1431 |
"logo": "https://p7.hiclipart.com/preview/266/466/402/whatsapp-computer-icons-chatbot-clip-art-what-app-icon.jpg",
|
|
|
1436 |
},
|
1437 |
{
|
1438 |
"name": "Wix",
|
1439 |
+
"description": "בניית אתרים בעיצוב מותאם אישית - פשוט לשימוש, מושלם לעסקים קטנים ויזמים.",
|
1440 |
"category": "builder",
|
1441 |
"url": "https://www.wix.com/",
|
1442 |
"logo": "https://cdn-icons-png.flaticon.com/512/5968/5968762.png",
|
1443 |
"icon": "fas fa-globe",
|
1444 |
+
"rating": 4.2,
|
1445 |
"isNew": false,
|
1446 |
"isFeatured": false
|
1447 |
},
|
1448 |
{
|
1449 |
"name": "Zapier",
|
1450 |
+
"description": "חיבור בין אפליקציות לתהליכים אוטומטיים - חוסך שעות של עבודה חוזרת.",
|
1451 |
"category": "automation",
|
1452 |
"url": "https://zapier.com/central",
|
1453 |
"logo": "https://www.svgrepo.com/show/354596/zapier-icon.svg",
|
|
|
1455 |
"rating": 3,
|
1456 |
"isNew": false,
|
1457 |
"isFeatured": false
|
1458 |
+
},
|
1459 |
+
|
1460 |
{
|
1461 |
"name": "חילוץ טקסט מתמונה",
|
1462 |
"description": "פיתחתי אתר המאפשר לחלץ טקסט מתמונות לפורמט הניתן לעריכה תוך שניות, בעברית ובכל שפה. מושלם לסטודנטים, לאנשי מקצוע ולכל מי שעוסק בטקסט מודפס או בכתב יד. עכשיו זה ממש קל לבצע דיגיטציה של מסמכים, לכידת הערות ולייעל את העבודה עם מסמכים :)",
|
|
|
1470 |
"rating": 5
|
1471 |
},
|
1472 |
{
|
1473 |
+
"name": "מחולל תמונות",
|
1474 |
+
"description": "באמצעות מחולל תמונות AI, אתם יכולים להזין כל טקסט או רעיון שעולה בראשכם ולקבל תמונה ייחודית שנוצרה במיוחד עבורכם.",
|
1475 |
+
"url": "https://sagi-ai-image-model-comparision.streamlit.app/",
|
1476 |
+
"logo": "https://sagi-ai-image-model-comparision.streamlit.app/~/+/media/ad88a7cae9ec53987d8f6314e6c9e94ddbeb73905b5e02c4011f47dd.jpg",
|
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",
|
1486 |
+
"description": "כלי מקוון חינמי לשדרוג איכות הווידאו עד 4K באמצעות טכנולוגיית AI. מאפשר חידוד, הסרת טשטוש והוספת פרטים לווידאו בלחיצה אחת.",
|
1487 |
+
"url": "https://www.capcut.com/magic-tools/upscale-video",
|
1488 |
+
"logo": "https://i.pinimg.com/736x/6f/00/de/6f00dee60ba4bad35cf9b29690a52792.jpg",
|
1489 |
+
"category": "video",
|
1490 |
+
"icon": "fas fa-video",
|
1491 |
+
"video": "https://www.youtube.com/embed/Iw__wI52UHU?si=5ZDctAYQLS71ma2f",
|
1492 |
+
"isNew": false,
|
1493 |
+
"isFeatured": false,
|
1494 |
+
"rating": 4
|
1495 |
+
},
|
1496 |
|
1497 |
{
|
1498 |
"name": "המרת תמונות ל PDF",
|
|
|
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",
|
|
|
1524 |
"url": "https://machinelearningforkids.co.uk/",
|
1525 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTysI6tQs62DJ5f3bANwqlpKpU6fgjujV7ZmA&s",
|
1526 |
"icon": "fas fa-graduation-cap",
|
1527 |
+
"rating": 3,
|
1528 |
"isNew": false,
|
1529 |
"isFeatured": false
|
1530 |
},
|
|
|
1541 |
},
|
1542 |
{
|
1543 |
"name": "speechgen",
|
1544 |
+
"description": "המרת טקסט לקול בעברית ובשפות נוספות - כולל מבטאים ורגש בקול.",
|
1545 |
"category": "audio",
|
1546 |
+
"url": "https://speechgen.io/en/ref/208381/",
|
1547 |
"logo": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEHbOvOYGlN3I0Pzfoy3TOmGuicaEGmLfBg&s",
|
1548 |
"icon": "fas fa-volume-down",
|
1549 |
"rating": 3,
|
|
|
1561 |
"isNew": false,
|
1562 |
"isFeatured": false
|
1563 |
}
|
1564 |
+
]
|