From 6a0435a6468a2428212ce273e3a89310f7285c1b Mon Sep 17 00:00:00 2001 From: william Date: Fri, 27 Mar 2026 09:37:35 +1100 Subject: [PATCH] Disable JS injection on Shopify sandbox pages (#163) --- rules/technologies/shopify.server.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/rules/technologies/shopify.server.json b/rules/technologies/shopify.server.json index eaf40b3..690eea7 100644 --- a/rules/technologies/shopify.server.json +++ b/rules/technologies/shopify.server.json @@ -74,6 +74,24 @@ ] } ] + }, + { + "name": "Prevent JS script injection on Sandbox tracking pages", + "condition": [ + { + "type": "PATH_MATCH", + "payload": { + "type": "CONTAIN", + "value": "/sandbox/modern" + } + } + ], + "value": [ + { + "type": "auto_inject_script", + "payload": false + } + ] } ] }