diff --git a/docs/supportedsites.md b/docs/supportedsites.md
index 1f5d4f8b..250d4d86 100644
--- a/docs/supportedsites.md
+++ b/docs/supportedsites.md
@@ -1233,12 +1233,6 @@ Consider all listed sites to potentially be NSFW.
Albums, Categories, individual Images, User Profiles, Videos |
|
-
- | IMG.Kiwi |
- https://img.kiwi/ |
- Albums, Categories, individual Images, User Profiles, Videos |
- |
-
| ImagePond |
https://imagepond.net/ |
diff --git a/gallery_dl/extractor/chevereto.py b/gallery_dl/extractor/chevereto.py
index 2b239c09..7384762f 100644
--- a/gallery_dl/extractor/chevereto.py
+++ b/gallery_dl/extractor/chevereto.py
@@ -42,10 +42,6 @@ BASE_PATTERN = CheveretoExtractor.update({
"root": "https://jpg6.su",
"pattern": r"jpe?g\d?\.(?:su|pet|fish(?:ing)?|church)",
},
- "imgkiwi": {
- "root": "https://img.kiwi",
- "pattern": r"img\.kiwi",
- },
"imagepond": {
"root": "https://imagepond.net",
"pattern": r"imagepond\.net",
diff --git a/test/results/imgkiwi.py b/test/results/imgkiwi.py
deleted file mode 100644
index cf4ffc39..00000000
--- a/test/results/imgkiwi.py
+++ /dev/null
@@ -1,51 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# 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.
-
-from gallery_dl.extractor import chevereto
-
-
-__tests__ = (
-{
- "#url" : "https://img.kiwi/image/79de2c41-70f9-4a87-bd6d-00fe9997c0c4.JR2wZz",
- "#category": ("chevereto", "imgkiwi", "image"),
- "#class" : chevereto.CheveretoImageExtractor,
- "#results" : "https://img.kiwi/images/2023/02/28/11ac1ebf28a2eae8265026b28e9c4413.jpg",
- "#sha1_content": "9ea704a77e2038b9008350682cfad53a614a60bd",
-
- "album" : "Kins3y Wolansk1",
- "extension": "jpg",
- "filename" : "11ac1ebf28a2eae8265026b28e9c4413",
- "id" : "JR2wZz",
- "url" : "https://img.kiwi/images/2023/02/28/11ac1ebf28a2eae8265026b28e9c4413.jpg",
- "user" : "johnirl",
-},
-
-{
- "#url" : "https://img.kiwi/album/kins3y-wolansk1.8Jxc",
- "#category": ("chevereto", "imgkiwi", "album"),
- "#class" : chevereto.CheveretoAlbumExtractor,
- "#pattern" : chevereto.CheveretoImageExtractor.pattern,
- "#count" : 19,
-},
-
-{
- "#url" : "https://img.kiwi/johnirl",
- "#category": ("chevereto", "imgkiwi", "user"),
- "#class" : chevereto.CheveretoUserExtractor,
- "#pattern" : chevereto.CheveretoImageExtractor.pattern,
- "#range" : "1-20",
- "#count" : 20,
-},
-
-{
- "#url" : "https://img.kiwi/johnirl/albums",
- "#category": ("chevereto", "imgkiwi", "user"),
- "#class" : chevereto.CheveretoUserExtractor,
- "#pattern" : chevereto.CheveretoAlbumExtractor.pattern,
- "#count" : range(155, 175),
-},
-
-)