Initialer Upload

This commit is contained in:
Florian Otto
2026-04-15 14:30:36 +02:00
commit edc4ec5bf3
33 changed files with 1505 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
// constants.js
// Projektname und zentrale Konfigurationen
const PROJECT_NAME = "CookieKop";
// Standardwert: Soll der Banner angezeigt werden?
const SHOW_BANNER_DEFAULT = true;
// Standardwert: Soll die Statistik anonymisiert geteilt werden?
const SHARE_STATS_DEFAULT = false;
// (Platzhalter) URL für anonymen Statistik-Upload
const STATS_UPLOAD_URL = "https://your-stats-endpoint.example.com/upload"; // aktuell deaktiviert
// Verfügbare Cookie-Verstoßtypen
const VIOLATION_TYPES = [
"Kein 'Ablehnen'-Button sichtbar",
"Voreingestellte Zustimmung (Checkboxen vorausgefüllt)",
"Intransparente Sprache",
"Keine echte Auswahlmöglichkeit",
"Tracking startet vor Einwilligung",
"Andere (bitte in Kommentar beschreiben)"
];