Files
vendoo/extension/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

49 lines
3.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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=""><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="queue-card">
<div class="queue-icon"></div>
<div><span>Vinted Workflow</span><strong id="queue-state">Wird geladen …</strong><small>Listings kontrolliert in Vinted übernehmen</small><div class="queue-progress"><i id="queue-progress-fill"></i></div></div>
<div class="queue-count"><b id="queue-count">0 / 0</b><button id="open-queue" type="button">Öffnen</button></div>
</article>
<article id="listing-card" class="listing-card hidden">
<header><div><span>Aktuelles Listing</span><b>Bereit</b></div><button id="listing-menu" type="button">•••</button></header>
<div class="listing-overview">
<div class="listing-photo"><img id="listing-image" alt="Produktbild"></div>
<div class="listing-copy"><h2 id="listing-title"></h2><p id="listing-meta"></p><code id="listing-sku"></code><dl><dt>Plattform</dt><dd><span class="platform-chip">Vinted</span></dd><dt>Preis</dt><dd id="listing-price"></dd><dt>Erstellt</dt><dd id="listing-created"></dd></dl></div>
</div>
<div class="safe-notice"><b>Nur ausfüllen</b><span>Öffnet Vinted und trägt die Daten ein ohne Entwurf und ohne Veröffentlichung.</span></div>
<button id="fill-listing" class="primary-action" type="button">Auf Vinted ausfüllen <span></span></button>
<div class="action-row"><button id="next-listing" class="secondary-action" type="button">Nächstes Listing</button><button id="prepare-images" class="secondary-action" type="button">Bilder vorbereiten</button></div>
</article>
<article id="empty-card" class="empty-card hidden"><strong>Keine offenen Vinted-Listings</strong><p>Neue Listings kannst du direkt in Vendoo erstellen.</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" 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><button id="open-app" type="button">Vendoo öffnen ↗</button></footer>
</main>
<script src="popup.js"></script>
</body>
</html>