Complete collection of AI agent skills including: - Frontend Development (Vue, React, Next.js, Three.js) - Backend Development (NestJS, FastAPI, Node.js) - Mobile Development (React Native, Expo) - Testing (E2E, frontend, webapp) - DevOps (GitHub Actions, CI/CD) - Marketing (SEO, copywriting, analytics) - Security (binary analysis, vulnerability scanning) - And many more... Synchronized from: https://skills.sh/ Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
675 B
HTML
24 lines
675 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Dev Browser</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="popup">
|
|
<h1>Dev Browser</h1>
|
|
<div class="toggle-row">
|
|
<label class="toggle">
|
|
<input type="checkbox" id="active-toggle" />
|
|
<span class="slider"></span>
|
|
</label>
|
|
<span id="status-text">Inactive</span>
|
|
</div>
|
|
<p id="connection-status" class="connection-status"></p>
|
|
</div>
|
|
<script type="module" src="./main.ts"></script>
|
|
</body>
|
|
</html>
|