-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevtools.html
More file actions
42 lines (40 loc) · 1.45 KB
/
devtools.html
File metadata and controls
42 lines (40 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Zinkx Developer Tools</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body class="dark-mode">
<header>
<img src="icons/icon16.png" alt="Zinkx Logo">
<h1>Zinkx Geliştirici Araçları</h1>
</header>
<div class="toolbar">
<button id="darkModeToggle">Gece Modu</button>
<button id="assistantModeToggle">Asistan Modu</button>
</div>
<div class="grid-container">
<div class="tool-section">
<h2>Kod Araçları</h2>
<button class="popup-button" data-popup="code-analysis-popup">Kodu Analiz Et</button>
<p>Kodunuzda hata ve sorunları tespit edin.</p>
<button class="popup-button" data-popup="code-editor-popup">Kaynak Kod Düzenleyici</button>
<p>Kaynak kodlarınızı düzenleyin ve değişiklikleri uygulayın.</p>
</div>
<!-- Diğer tool-section bölümleri buraya eklenebilir -->
</div>
<div id="code-analysis-popup" class="popup">
<div class="popup-header">
<img src="icons/icon16.png" alt="Icon">
<button class="popup-close">×</button>
</div>
<h3>Kod Analizi ve Hata Ayıklama</h3>
<button id="analyzeCode">Kodu Analiz Et</button>
<p>Kodunuzda hata ve sorunları tespit edin.</p>
<pre id="analysisResults"></pre>
</div>
<!-- Diğer pop-up bölümleri buraya eklenebilir -->
<script src="devtools.js"></script>
</body>
</html>