diff --git a/xExtension-CustomCSS/desktop_resolution.png b/xExtension-CustomCSS/desktop_resolution.png
deleted file mode 100644
index 6ff036c..0000000
Binary files a/xExtension-CustomCSS/desktop_resolution.png and /dev/null differ
diff --git a/xExtension-CustomCSS/extension.php b/xExtension-CustomCSS/extension.php
deleted file mode 100644
index 094ac4b..0000000
--- a/xExtension-CustomCSS/extension.php
+++ /dev/null
@@ -1,47 +0,0 @@
-registerTranslates();
-
- $current_user = Minz_Session::paramString('currentUser');
- $filename = 'style.' . $current_user . '.css';
- $filepath = join_path($this->getPath(), 'static', $filename);
-
- if (file_exists($filepath)) {
- Minz_View::appendStyle($this->getFileUrl($filename, 'css'));
- }
- }
-
- #[\Override]
- public function handleConfigureAction(): void {
- $this->registerTranslates();
-
- $current_user = Minz_Session::paramString('currentUser');
- $filename = 'style.' . $current_user . '.css';
- $staticPath = join_path($this->getPath(), 'static');
- $filepath = join_path($staticPath, $filename);
-
- if (!file_exists($filepath) && !is_writable($staticPath)) {
- $tmpPath = explode(EXTENSIONS_PATH . '/', $staticPath);
- $this->permission_problem = $tmpPath[1] . '/';
- } elseif (file_exists($filepath) && !is_writable($filepath)) {
- $tmpPath = explode(EXTENSIONS_PATH . '/', $filepath);
- $this->permission_problem = $tmpPath[1];
- } elseif (Minz_Request::isPost()) {
- $css_rules = html_entity_decode(Minz_Request::paramString('css-rules'));
- file_put_contents($filepath, $css_rules);
- }
-
- $this->css_rules = '';
- if (file_exists($filepath)) {
- $this->css_rules = htmlentities(file_get_contents($filepath) ?: '');
- }
- }
-}
diff --git a/xExtension-CustomCSS/i18n/de/ext.php b/xExtension-CustomCSS/i18n/de/ext.php
deleted file mode 100644
index a0c704c..0000000
--- a/xExtension-CustomCSS/i18n/de/ext.php
+++ /dev/null
@@ -1,8 +0,0 @@
- array(
- 'write_css' => 'Benutzerspezifische CSS Regeln',
- 'permission_problem' => 'Deine CSS Datei ist nicht beschreibbar, bitte ändere die Berechtigungen von %s'
- ),
-);
diff --git a/xExtension-CustomCSS/i18n/en/ext.php b/xExtension-CustomCSS/i18n/en/ext.php
deleted file mode 100644
index c5f95ed..0000000
--- a/xExtension-CustomCSS/i18n/en/ext.php
+++ /dev/null
@@ -1,8 +0,0 @@
- array(
- 'write_css' => 'Additional CSS rules',
- 'permission_problem' => 'Your CSS file is not writable, please change the file permissions for %s',
- ),
-);
diff --git a/xExtension-CustomCSS/i18n/fr/ext.php b/xExtension-CustomCSS/i18n/fr/ext.php
deleted file mode 100644
index 3aa3c82..0000000
--- a/xExtension-CustomCSS/i18n/fr/ext.php
+++ /dev/null
@@ -1,8 +0,0 @@
- array(
- 'write_css' => 'Règles CSS supplémentaires',
- 'permission_problem' => 'Votre fichier CSS est en lecture seule ; veuillez adapter les permissions pour %s',
- ),
-);
diff --git a/xExtension-CustomCSS/i18n/tr/ext.php b/xExtension-CustomCSS/i18n/tr/ext.php
deleted file mode 100644
index 67240da..0000000
--- a/xExtension-CustomCSS/i18n/tr/ext.php
+++ /dev/null
@@ -1,8 +0,0 @@
- array(
- 'write_css' => 'Ek CSS kuralları',
- 'permission_problem' => 'CSS dosyanız yazılabilir değil, lütfen %s için dosya izinlerini değiştirin',
- ),
-);
diff --git a/xExtension-CustomCSS/metadata.json b/xExtension-CustomCSS/metadata.json
deleted file mode 100644
index 6d6aefb..0000000
--- a/xExtension-CustomCSS/metadata.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "Custom CSS",
- "author": "Marien Fressinaud",
- "description": "Give possibility to overwrite the CSS with a user-specific rules.",
- "version": "0.5.2",
- "entrypoint": "CustomCSS",
- "type": "user"
-}
diff --git a/xExtension-CustomCSS/mobile_resolution.png b/xExtension-CustomCSS/mobile_resolution.png
deleted file mode 100644
index 6524b2b..0000000
Binary files a/xExtension-CustomCSS/mobile_resolution.png and /dev/null differ
diff --git a/xExtension-CustomCSS/static/.gitignore b/xExtension-CustomCSS/static/.gitignore
deleted file mode 100644
index b068666..0000000
--- a/xExtension-CustomCSS/static/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-style.*.css
diff --git a/xExtension-CustomJS/LICENSE b/xExtension-CustomJS/LICENSE
deleted file mode 100644
index cebe035..0000000
--- a/xExtension-CustomJS/LICENSE
+++ /dev/null
@@ -1,662 +0,0 @@
-GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.