From abe541fa084d9d3243fcd90bc4caa4a86f8743c8 Mon Sep 17 00:00:00 2001 From: Craig London Date: Mon, 20 Mar 2017 11:18:28 -0400 Subject: [PATCH 1/2] Add another pattern to detect Tealium --- src/apps.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/apps.json b/src/apps.json index 04b2f0408..735710242 100755 --- a/src/apps.json +++ b/src/apps.json @@ -7630,7 +7630,10 @@ ], "env": "^TEALIUMENABLED$", "icon": "Tealium.png", - "script": "//tags\\.tiqcdn\\.com/", + "script": [ + "//tags\\.tiqcdn\\.com/", + "/tealium/utag\\.js" + ], "website": "http://tealium.com" }, "TeamCity": { @@ -10162,4 +10165,4 @@ "priority": "9" } } -} \ No newline at end of file +} From c9606e052e6dbd05885192b1b7c18d86d87ad42a Mon Sep 17 00:00:00 2001 From: Craig London Date: Mon, 20 Mar 2017 11:56:06 -0400 Subject: [PATCH 2/2] Add regex start and ending characters to speed up matching --- src/apps.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps.json b/src/apps.json index 735710242..39a09ec75 100755 --- a/src/apps.json +++ b/src/apps.json @@ -7631,8 +7631,8 @@ "env": "^TEALIUMENABLED$", "icon": "Tealium.png", "script": [ - "//tags\\.tiqcdn\\.com/", - "/tealium/utag\\.js" + "^//tags\\.tiqcdn\\.com/", + "/tealium/utag\\.js$" ], "website": "http://tealium.com" },