From 67dde503454d2b367236fedf3678e48105510a9d Mon Sep 17 00:00:00 2001 From: lwdudu Date: Tue, 17 Mar 2026 11:44:59 -0300 Subject: [PATCH 1/2] Add DressOn and Wx3 technology detection - DressOn: AI-powered virtual fitting room (category: Augmented reality) Detected via scriptSrc: api.dresson.com.br/widget/ - Wx3: Brazilian e-commerce platform (category: Ecommerce) Detected via meta author tag and HTML link to wx3.com.br --- src/images/icons/DressOn.svg | 30 ++++++++++++++++++++++++++ src/images/icons/Wx3.svg | 41 ++++++++++++++++++++++++++++++++++++ src/technologies/d.json | 18 +++++++++++++++- src/technologies/w.json | 14 +++++++++++- 4 files changed, 101 insertions(+), 2 deletions(-) create mode 100644 src/images/icons/DressOn.svg create mode 100644 src/images/icons/Wx3.svg diff --git a/src/images/icons/DressOn.svg b/src/images/icons/DressOn.svg new file mode 100644 index 00000000..eadb0a25 --- /dev/null +++ b/src/images/icons/DressOn.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/images/icons/Wx3.svg b/src/images/icons/Wx3.svg new file mode 100644 index 00000000..ed054287 --- /dev/null +++ b/src/images/icons/Wx3.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/technologies/d.json b/src/technologies/d.json index 15cbbc99..7af6db4e 100644 --- a/src/technologies/d.json +++ b/src/technologies/d.json @@ -3825,6 +3825,22 @@ }, "website": "https://www.adobe.com/products/dreamweaver.html" }, + "DressOn": { + "cats": [ + 105 + ], + "description": "DressOn is an AI-powered virtual fitting room that lets online shoppers try on clothes digitally.", + "icon": "DressOn.svg", + "saas": true, + "pricing": [ + "freemium", + "recurring" + ], + "scriptSrc": [ + "api\\.dresson\\.com\\.br/widget/" + ], + "website": "https://dresson.com.br" + }, "Drift": { "cats": [ 52 @@ -4527,4 +4543,4 @@ "cdn\\.dyte\\.in/" ] } -} +} \ No newline at end of file diff --git a/src/technologies/w.json b/src/technologies/w.json index fe260692..aae956f7 100644 --- a/src/technologies/w.json +++ b/src/technologies/w.json @@ -5143,6 +5143,18 @@ ], "website": "https://www.wwpass.com" }, + "Wx3": { + "cats": [ + 6 + ], + "description": "Wx3 is a Brazilian e-commerce platform for fashion and retail stores.", + "icon": "Wx3.svg", + "meta": { + "author": "Wx3" + }, + "html": "]*href=\"https://wx3\\.com\\.br\"", + "website": "https://wx3.com.br" + }, "Wyng": { "cats": [ 32 @@ -5185,4 +5197,4 @@ ], "website": "https://wysibb.com" } -} +} \ No newline at end of file From 4a5498636eb817f655aab10af364610ec56a9c03 Mon Sep 17 00:00:00 2001 From: lwdudu Date: Tue, 17 Mar 2026 11:51:10 -0300 Subject: [PATCH 2/2] Fix Wx3 html field to be array type Schema requires html to be an array, not a string. --- src/technologies/w.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/technologies/w.json b/src/technologies/w.json index aae956f7..38da234a 100644 --- a/src/technologies/w.json +++ b/src/technologies/w.json @@ -5152,7 +5152,9 @@ "meta": { "author": "Wx3" }, - "html": "]*href=\"https://wx3\\.com\\.br\"", + "html": [ + "]*href=\"https://wx3\\.com\\.br\"" + ], "website": "https://wx3.com.br" }, "Wyng": {