From 54ab94a68d352bf9b8e5fe1ece8d9e8d320906e4 Mon Sep 17 00:00:00 2001 From: nurbek Date: Fri, 4 Dec 2020 01:43:37 +0600 Subject: [PATCH 1/5] Add Trustpilot/Widget --- .../webextension/images/icons/Trustpilot.svg | 3 +++ src/technologies.json | 20 ++++++++++++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 src/drivers/webextension/images/icons/Trustpilot.svg diff --git a/src/drivers/webextension/images/icons/Trustpilot.svg b/src/drivers/webextension/images/icons/Trustpilot.svg new file mode 100644 index 000000000..030e51cd4 --- /dev/null +++ b/src/drivers/webextension/images/icons/Trustpilot.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/technologies.json b/src/technologies.json index ed457a6a9..f5c211a62 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -3324,7 +3324,7 @@ "description": "ClustrMaps widget is a visitor tracker, designed for general web and blog use.", "icon": "ClustrMaps.svg", "dom": { - "img[src*=clustrmaps.com]": { + "img[src*='clustrmaps.com']": { "attributes": { "src": "" } @@ -10575,8 +10575,10 @@ "description": "OpenStreetMap is a free, editable map of the whole world that is being built by volunteers largely from scratch and released with an open-content license.", "icon": "OpenStreetMap.svg", "dom": { - "iframe[src=*openstreetmap.org],iframe[data-lazy-src=*openstreetmap.org]": { - "text": "" + "iframe[src*='openstreetmap.org'],iframe[data-lazy-src*='openstreetmap.org']": { + "attributes": { + "src": "" + } } }, "oss": true, @@ -15331,6 +15333,18 @@ "scripts": "consent\\.trustarc\\.com", "website": "http://trustarc.com" }, + "Trustpilot": { + "cats": [ + 5 + ], + "description": "Trustpilot is a Danish consumer review website which provide embed stand-alone applications in your website to show your most recent reviews, TrustScore, and star ratings.", + "icon": "Trustpilot.svg", + "js": { + "Trustpilot": "" + }, + "scripts": "\\.trustpilot\\.com", + "website": "https://business.trustpilot.com" + }, "Tumblr": { "cats": [ 11 From 1246e3297cdf47a907f2b8b9a10c24b6973a64cd Mon Sep 17 00:00:00 2001 From: nurbek Date: Fri, 4 Dec 2020 01:47:01 +0600 Subject: [PATCH 2/5] Add Trustpilot/Widget pricing --- src/technologies.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/technologies.json b/src/technologies.json index f5c211a62..851d1ad26 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -15342,6 +15342,8 @@ "js": { "Trustpilot": "" }, + "saas": true, + "pricing": ["mid","freemium","recurring"], "scripts": "\\.trustpilot\\.com", "website": "https://business.trustpilot.com" }, From 33de5b5b7bb3f8f73377de7a2fe6fc16e940c425 Mon Sep 17 00:00:00 2001 From: nurbek Date: Thu, 4 Feb 2021 00:27:19 +0600 Subject: [PATCH 3/5] Add MS Clarity / analytics --- src/technologies.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/technologies.json b/src/technologies.json index 8b9ae2219..a4d34f607 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -10589,6 +10589,20 @@ "scripts": "bat\\.bing\\.com/bat\\.js", "website": "https://about.ads.microsoft.com" }, + "Microsoft Clarity": { + "cats": [ + 10 + ], + "description": "Microsoft's Clarity is a analytics tool which provides website usage statistics, session recording, and heatmaps.", + "icon": "Microsoft.png", + "js": { + "clarity": "" + }, + "scripts": "www\\.clarity\\.ms/.+/([\\d.]+)/clarity\\.js\\;version:\\1", + "saas": true, + "pricing": ["freemium"], + "website": "https://clarity.microsoft.com" + }, "Microsoft Excel": { "cats": [ 20 From 5996342afc683f508d7126339af5e9d71caf94dd Mon Sep 17 00:00:00 2001 From: Florent Bourgeois Date: Sun, 7 Feb 2021 18:41:39 +0100 Subject: [PATCH 4/5] Adds TwicPics --- .../webextension/images/icons/TwicPics.svg | 1 + src/technologies.json | 36 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/drivers/webextension/images/icons/TwicPics.svg diff --git a/src/drivers/webextension/images/icons/TwicPics.svg b/src/drivers/webextension/images/icons/TwicPics.svg new file mode 100644 index 000000000..080ca0cad --- /dev/null +++ b/src/drivers/webextension/images/icons/TwicPics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/technologies.json b/src/technologies.json index 01a1de10b..ae3396a68 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -20914,6 +20914,42 @@ "implies": "Node.js", "website": "https://totaljs.com" }, + "TwicPics": { + "description": "Responsive Images as a Service", + "cats": [ + 31, + 59 + ], + "headers": { + "server": "^TwicPics/\\d+\\.\\d+\\.\\d+$" + }, + "scripts": ".+\\.twic\\.pics", + "dom": { + "[data-twic-src]": { + "attributes": { + "data-twic-src": "" + } + }, + "data-twic-background": { + "attributes": { + "data-twic-background": "" + } + }, + ".twic": { + "attributes": { + "data-src": "" + } + } + }, + "saas": true, + "pricing": [ + "freemium", + "recurring", + "payg" + ], + "icon": "TwicPics.svg", + "website": "https://www.twicpics.com" + }, "uCoz": { "cats": [ 1 From c3cb34afc3a1408b6754d4f1a4539a109ee8e220 Mon Sep 17 00:00:00 2001 From: Elbert Alias <77259+AliasIO@users.noreply.github.com> Date: Wed, 10 Feb 2021 08:39:37 +1100 Subject: [PATCH 5/5] Update technologies.json --- src/technologies.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/technologies.json b/src/technologies.json index ae3396a68..8f41e360d 100644 --- a/src/technologies.json +++ b/src/technologies.json @@ -20915,7 +20915,7 @@ "website": "https://totaljs.com" }, "TwicPics": { - "description": "Responsive Images as a Service", + "description": "TwicPics offers on-demand responsive image generation.", "cats": [ 31, 59 @@ -21130,4 +21130,4 @@ "website": "https://www.xt-commerce.com" } } -} \ No newline at end of file +}