From ef68e473c6e96896314b66fe1d65efaa1865bbf1 Mon Sep 17 00:00:00 2001 From: "Artyom M." Date: Mon, 26 Aug 2024 11:05:59 +0300 Subject: [PATCH] Change README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b1fdf25..229b834 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ There is [debug](https://support.google.com/tagmanager/answer/6107056?hl=en) / [ ## đź“ŚLimitations / Not Supported Scenarios There is no support for the [Content Security Policy](https://developers.google.com/tag-platform/tag-manager/web/csp) out of the box, as that would require additional JavaScript modification. There is also no support for [renaming](https://developers.google.com/tag-platform/tag-manager/web/datalayer#tag-manager) the dataLayer object for the Google Tag Manager. + However, starting from version **3.0.0**, you can disable automatic script import by setting `ImportJsAutomatically = false` via `GoogleTagManagerOptions`: ```CSharp builder.Services.AddGoogleTagManager(options => { options.GtmId = "GTM-XXXXXXX"; options.ImportJsAutomatically = false; });