Transfer von GitLab

This commit is contained in:
Florian Otto
2026-04-13 23:59:49 +02:00
parent 8f3f5fd1cf
commit c4651e518d
33 changed files with 1504 additions and 1 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)"
];