Files
vendoo/extensions/firefox/popup.html
Masterluke77andGitHub 6f48827f4d Vendoo 1.41.2 – Git Ignore Boundary & Module Tracking Hotfix (#18)
* docs: prepare Vendoo 1.41.2 git-ignore boundary hotfix

* fix: track native source modules with root-anchored runtime ignores
2026-07-09 17:09:00 +02:00

97 lines
3.4 KiB
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Vendoo Link</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<main class="popup-shell">
<header class="popup-header">
<div class="brand-lockup">
<img src="icon-48.png" alt="Vendoo">
<div>
<strong>Vendoo Link</strong>
<span>Vinted Assistant</span>
</div>
</div>
<div id="connection-chip" class="connection-chip"><i></i><span>Prüfe …</span></div>
<button id="settings-toggle" class="icon-button" type="button" title="Einstellungen"></button>
</header>
<section id="dashboard-view" class="popup-content">
<article class="summary-card">
<div class="summary-main">
<span class="eyebrow">Vinted Queue</span>
<strong id="queue-state">Wird geladen …</strong>
<small id="queue-summary-text">Offene Artikel werden geladen.</small>
</div>
<div class="summary-side">
<b id="queue-count">0</b>
<small>offen</small>
</div>
</article>
<div class="toolbar-row">
<button id="open-queue" class="tool-button" type="button">Queue</button>
<button id="open-app" class="tool-button" type="button">Vendoo</button>
<button id="reload-list" class="tool-button" type="button">Neu laden</button>
</div>
<section class="list-section">
<div class="section-head">
<strong>Offene Listings</strong>
<span id="list-count">0 Einträge</span>
</div>
<div id="queue-list" class="queue-list"></div>
</section>
<article id="empty-card" class="empty-card hidden">
<strong>Keine offenen Vinted-Listings</strong>
<p>Erstelle neue Listings in Vendoo oder stelle weitere Artikel in die Queue.</p>
<button id="empty-open-app" type="button">Vendoo öffnen</button>
</article>
</section>
<section id="settings-view" class="settings-view hidden">
<div class="settings-heading">
<button id="back-dashboard" class="back-button" type="button"></button>
<div><strong>Einstellungen</strong><span>Verbindung und Standardwerte</span></div>
</div>
<div class="setting">
<label for="server-url">Vendoo Server</label>
<input id="server-url" type="url" spellcheck="false">
</div>
<div class="setting-row">
<div class="setting">
<label for="provider">AI Provider</label>
<select id="provider">
<option value="openrouter">OpenRouter</option>
<option value="claude">Claude</option>
<option value="openai">OpenAI</option>
<option value="local">Ollama</option>
</select>
</div>
<div class="setting">
<label for="language">Sprache</label>
<select id="language">
<option value="de">Deutsch</option>
<option value="en">English</option>
<option value="fr">Français</option>
<option value="nl">Nederlands</option>
</select>
</div>
</div>
<button id="save-settings" class="primary-action" type="button">Einstellungen speichern</button>
</section>
<footer>
<span>Vendoo Link v1.9.0</span>
<span>Nur ausfüllen = kein Entwurf</span>
</footer>
</main>
<script src="popup.js"></script>
</body>
</html>