diff --git a/docs/supportedsites.md b/docs/supportedsites.md
index be8df383..8429f850 100644
--- a/docs/supportedsites.md
+++ b/docs/supportedsites.md
@@ -385,6 +385,12 @@ Consider all sites to be NSFW unless otherwise known.
Soundtracks |
|
+
+ | Kiss Goddess |
+ https://kissgoddess.com/ |
+ Galleries, Models |
+ |
+
| Kohlchan |
https://kohlchan.net/ |
diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py
index 86ee7bc4..72b045da 100644
--- a/gallery_dl/extractor/__init__.py
+++ b/gallery_dl/extractor/__init__.py
@@ -67,6 +67,7 @@ modules = [
"keenspot",
"kemonoparty",
"khinsider",
+ "kissgoddess",
"kohlchan",
"komikcast",
"lightroom",
diff --git a/gallery_dl/extractor/kissgoddess.py b/gallery_dl/extractor/kissgoddess.py
new file mode 100644
index 00000000..85ec8069
--- /dev/null
+++ b/gallery_dl/extractor/kissgoddess.py
@@ -0,0 +1,80 @@
+# -*- coding: utf-8 -*-
+
+# Copyright 2022 Mike Fährmann
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+
+"""Extractors for https://kissgoddess.com/"""
+
+from .common import GalleryExtractor, Extractor, Message
+from .. import text, exception
+
+
+class KissgoddessGalleryExtractor(GalleryExtractor):
+ """Extractor for image galleries on kissgoddess.com"""
+ category = "kissgoddess"
+ root = "https://kissgoddess.com"
+ pattern = r"(?:https?://)?(?:www\.)?kissgoddess\.com/album/(\d+)"
+ test = ("https://kissgoddess.com/album/18285.html", {
+ "pattern": r"https://pic\.kissgoddess\.com"
+ r"/gallery/16473/18285/s/\d+\.jpg",
+ "count": 8,
+ "keyword": {
+ "gallery_id": 18285,
+ "title": "[Young Champion Extra] 2016.02 No.03 菜乃花 安枝瞳 葉月あや",
+ },
+ })
+
+ def __init__(self, match):
+ self.gallery_id = match.group(1)
+ url = "{}/album/{}.html".format(self.root, self.gallery_id)
+ GalleryExtractor.__init__(self, match, url)
+
+ def metadata(self, page):
+ return {
+ "gallery_id": text.parse_int(self.gallery_id),
+ "title" : text.extract(
+ page, '', "<")[0].rpartition(" | ")[0],
+ }
+
+ def images(self, page):
+ pnum = 1
+
+ while page:
+ for url in text.extract_iter(page, "
= 7",
+ })
+
+ def __init__(self, match):
+ Extractor.__init__(self, match)
+ self.model = match.group(1)
+
+ def items(self):
+ url = "{}/people/{}.html".format(self.root, self.model)
+ page = self.request(url).text
+
+ data = {"_extractor": KissgoddessGalleryExtractor}
+ for path in text.extract_iter(page, 'thumb">