diff --git a/src/FilterLists.Web/ClientApp/imgs/software/05-Nano-Adblocker.png b/src/FilterLists.Web/ClientApp/imgs/software/05-Nano-Adblocker.png
index 2a5b5dc5d..fafeee28b 100644
Binary files a/src/FilterLists.Web/ClientApp/imgs/software/05-Nano-Adblocker.png and b/src/FilterLists.Web/ClientApp/imgs/software/05-Nano-Adblocker.png differ
diff --git a/src/FilterLists.Web/ClientApp/imgs/software/13-MinerBlock.svg b/src/FilterLists.Web/ClientApp/imgs/software/13-MinerBlock.svg
new file mode 100644
index 000000000..a2c2b0064
--- /dev/null
+++ b/src/FilterLists.Web/ClientApp/imgs/software/13-MinerBlock.svg
@@ -0,0 +1,34 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/imgs/software/14-Pi-hole.png b/src/FilterLists.Web/ClientApp/imgs/software/14-Pi-hole.png
new file mode 100644
index 000000000..ca1a91dca
Binary files /dev/null and b/src/FilterLists.Web/ClientApp/imgs/software/14-Pi-hole.png differ
diff --git a/src/FilterLists.Web/ClientApp/imgs/software/15-uBlock.svg b/src/FilterLists.Web/ClientApp/imgs/software/15-uBlock.svg
new file mode 100644
index 000000000..89cb70d56
--- /dev/null
+++ b/src/FilterLists.Web/ClientApp/imgs/software/15-uBlock.svg
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/src/FilterLists.Web/ClientApp/imgs/software/16-Internet-Explorer-TPL.png b/src/FilterLists.Web/ClientApp/imgs/software/16-Internet-Explorer-TPL.png
new file mode 100644
index 000000000..2b8189c8d
Binary files /dev/null and b/src/FilterLists.Web/ClientApp/imgs/software/16-Internet-Explorer-TPL.png differ
diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx
index 2f73ddd47..437faffd5 100644
--- a/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx
+++ b/src/FilterLists.Web/ClientApp/modules/home/components/listsTable/SoftwareIcon.tsx
@@ -8,6 +8,10 @@ import img6 from "../../../../imgs/software/06-AdBlock.png";
import img7 from "../../../../imgs/software/07-AdAway.png";
import img8 from "../../../../imgs/software/08-Personal-Blocklist.png";
import img10 from "../../../../imgs/software/10-Redirector.png";
+import img13 from "../../../../imgs/software/13-MinerBlock.svg";
+import img14 from "../../../../imgs/software/14-Pi-hole.png";
+import img15 from "../../../../imgs/software/15-uBlock.svg";
+import img16 from "../../../../imgs/software/16-Internet-Explorer-TPL.png";
interface IProps {
id: number;
@@ -36,5 +40,9 @@ const icons: { [id: number]: IIcon; } = {
6: { image: img6, imageTitle: "AdBlock" },
7: { image: img7, imageTitle: "AdAway" },
8: { image: img8, imageTitle: "Personal Blocklist" },
- 10: { image: img10, imageTitle: "Redirector" }
+ 10: { image: img10, imageTitle: "Redirector" },
+ 13: { image: img13, imageTitle: "MinerBlock" },
+ 14: { image: img14, imageTitle: "Pi-hole" },
+ 15: { image: img15, imageTitle: "uBlock" },
+ 16: { image: img16, imageTitle: "Internet Explorer (TPL)" }
};
\ No newline at end of file