Skip to content

Commit

Permalink
fix: add some missing entries
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Feb 1, 2024
1 parent f2146b4 commit 7357a4d
Showing 1 changed file with 36 additions and 6 deletions.
42 changes: 36 additions & 6 deletions src/trackers.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const trackers = [
},
{
id: "cloudflare",
check: (url) => url.match(/\.cloudflare\.com/i),
check: (url) => url.match(/\.cloudflare\.com/i)|| url.match(/\.cloudflareinsights\.com/i),
message: "Host files locally",
},
{
Expand Down Expand Up @@ -142,7 +142,7 @@ const trackers = [
},
{
id: "Mailjet",
check: (url) => url.match(/\.mailjet\.com/i),
check: (url) => url.match(/\.mailjet\.com/i) || url.match(/\.mjt\.lu/i) ,
message: "Use hosted Matomo instance",
},
{
Expand All @@ -157,24 +157,54 @@ const trackers = [
},
{
id: "vimeo",
check: (url) => url.match(/\.vimeocdn\.com/i),
check: (url) => url.match(/\.vimeocdn\.com/i) ||url.match(/\.vimeo\.com/i) ,
message: "use peertube",
},
{
id: "taboola",
check: (url) => url.match(/taboola\.com/i),
check: (url) => url.match(/\.taboola\.com/i),
message: "Replace with privacy-first solutions",
},
{
id: "contentsquare",
check: (url) => url.match(/contentsquare\.net/i),
check: (url) => url.match(/\.contentsquare\.net/i),
message: "Replace with privacy-first solutions",
},
{
id: "criteo",
check: (url) => url.match(/criteo\.net/i) || url.match(/criteo\.com/i),
check: (url) => url.match(/\.criteo\.net/i) || url.match(/\.criteo\.com/i),
message: "Replace with privacy-first solutions",
},
{
id: "crisp",
check: (url) => url.match(/\.crisp\.chat/i),
message: "Ensure your TOS notify the CRISP usage",
},
{
id: "framer",
check: (url) => url.match(/\.framerusercontent\.com/i),
message: "Ensure your TOS notify the Framer usage",
},
{
id: "optimole",
check: (url) => url.match(/\.optimole\.com/i),
message: "Ensure your TOS notify the Optimole usage",
},
{
id: "brevo",
check: (url) => url.match(/\.brevo\.com/i),
message: "Ensure your TOS notify the Brevo usage",
},
{
id: "sentry",
check: (url) => url.match(/\.ravenjs\.com/i),
message: "Ensure your TOS notify the Sentry usage",
},
{
id: "at-internet",
check: (url) => url.match(/\.aticdn\.net/i),
message: "Ensure your TOS notify the AT internet usage",
},
];

module.exports = trackers;
Expand Down

0 comments on commit 7357a4d

Please sign in to comment.