{"id":336,"date":"2023-03-28T21:32:27","date_gmt":"2023-03-28T18:32:27","guid":{"rendered":"https:\/\/www.genecy.com\/blog\/?p=336"},"modified":"2024-08-14T10:38:23","modified_gmt":"2024-08-14T07:38:23","slug":"how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions","status":"publish","type":"post","link":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/","title":{"rendered":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions"},"content":{"rendered":"\n<p>As an advertiser, you rely on Google Ad Manager (GPT) tags to display your ads to your target audience. However, some users may use adblock style extensions, which can prevent your ads from being displayed. This can be a frustrating experience for both you and your audience.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Fortunately, there is a way to detect if your GPT tags are being blocked by adblock style extensions and show a popup message to your audience. In this article, we will show you how to create and set up this feature on your website.<\/p>\n\n\n\n<p>This adblock checker is made specifically for websites that use Google Ad Manager (GPT) tags to display their ads. It has been tested with the latest version of <strong>AdBlock<\/strong> extension (Version 5.4.1) for Chrome and <strong>AdBlocker Ultimate<\/strong> (Version 3.7.21) for Firefox.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Create a div Element in Your HTML<\/h2>\n\n\n\n<p>The first step is to create a div element in your HTML where you want to display the popup message. You can customize the message to suit your needs. For example:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;div id=&quot;adblock-popup&quot;&gt;\n  &lt;p&gt;It looks like you&#039;re using an ad blocker. Please disable it to see our content.&lt;\/p&gt;\n&lt;\/div&gt;\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">Step 2: Add CSS to Style the Popup Message<\/h2>\n\n\n\n<p>Next, you need to add some CSS to style the popup message. Here&#8217;s an example:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: css; title: ; notranslate\" title=\"\">\n#adblock-popup {\n  position: fixed;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  background-color: #f44336;\n  color: #fff;\n  padding: 10px;\n  text-align: center;\n  display: none;\n}\n<\/pre><\/div>\n\n\n<p>This will position the popup message at the bottom of the page and style it with a red background color and white text.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Add JavaScript Code to Detect Adblock Style Extensions<\/h2>\n\n\n\n<p>Copy and paste the following JavaScript code after the googletag definition in the &lt;BODY&gt; section:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;script type=&quot;text\/javascript&quot;&gt;\nvar __genecycomAdblockCheckerGPTStarted = false;\n\nfunction genecycomShowAdblockPopup() {\n\tdocument.getElementById(&#039;adblock-popup&#039;).style.display = &#039;block&#039;;\n}\n\nfunction genecycomAdblockCheckerGPT() {\n\tif (__genecycomAdblockCheckerGPTStarted) {\n\t\treturn;\n\t}\n\t__genecycomAdblockCheckerGPTStarted = true;\n\tlet isAdBlockerEnabled = true;\n\n\tif (typeof googletag.pubads !== &#039;function&#039;) {\n\t\tgenecycomShowAdblockPopup();\n\t\treturn;\n\t}\n\n\tvar adBlockCheckExt_slotRequested = function() {\n\t\tgoogletag.pubads().removeEventListener(&#039;slotRequested&#039;, adBlockCheckExt_slotRequested);\n\t\tsetTimeout(function() {\n\t\t\t\tif (isAdBlockerEnabled) {\n\t\t\t\t\tgenecycomShowAdblockPopup();\n\t\t\t\t}\n\t\t\t}, 700);\n\t};\n\tvar adBlockCheckExt_slotResponseReceived = function() {\n\t\tgoogletag.pubads().removeEventListener(&#039;slotResponseReceived&#039;, adBlockCheckExt_slotResponseReceived);\n\t\tisAdBlockerEnabled = false;\n\t};\n\n\tgoogletag.pubads().addEventListener(&#039;slotRequested&#039;, adBlockCheckExt_slotRequested);\n\tgoogletag.pubads().addEventListener(&#039;slotResponseReceived&#039;, adBlockCheckExt_slotResponseReceived);\n}\n\nfunction genecycomAdblockCheckerElem() {\n\twindow.setTimeout(function() {\n\t\t\tif (typeof window.googletag === &#039;undefined&#039;) {\n\t\t\t\tgenecycomShowAdblockPopup();\n\t\t\t\treturn;\n\t\t\t}\n\t\t\twindow.googletag = window.googletag || {};\n\t\t\twindow.googletag.cmd = window.googletag.cmd || &#x5B;];\n\t\t\twindow.googletag.cmd.push(function() {\n\t\t\t\tgenecycomAdblockCheckerGPT();\n\t\t\t});\n\t\t\tsetTimeout(function() {\n\t\t\t\t\tif (!__genecycomAdblockCheckerGPTStarted) {\n\t\t\t\t\t\tgenecycomAdblockCheckerGPT();\n\t\t\t\t\t}\n\t\t\t\t}, 1000);\n\t\t}, 300);\n}\n\ngenecycomAdblockCheckerElem();\n&lt;\/script&gt;\n<\/pre><\/div>\n\n\n<p>This code will check if an adblocker is enabled and display the popup message if it is. It works by listening to the GPT events &#8216;<em>slotRequested<\/em>&#8216; and &#8216;<em>slotResponseReceived<\/em>&#8216; to determine if an ad is being blocked. If an ad is blocked, the popup message will be displayed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Customize the Popup Message and Add Any Necessary Functionality<\/h2>\n\n\n\n<p>Finally, you can customize the popup message to your liking and add any necessary additional functionality. For example, you may want to include a button that links to a page that explains why you rely on ads to provide free content or how to disable adblockers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>By following these steps, you can detect if your GPT tags are being blocked by adblock style extensions and show a popup message to your audience. This will help you ensure that your ads are being seen by your target audience and improve your overall advertising effectiveness. Remember to place the JavaScript code in the &lt;BODY&gt; section, after the googletag definition. If you need help with <a href=\"https:\/\/www.genecy.com\/\">custom creative templates for Google Ad Manager<\/a>, visit our website at <a href=\"https:\/\/www.genecy.com\/\">genecy.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As an advertiser, you rely on Google Ad Manager (GPT) tags to display your ads to your target audience. However, some users may use adblock style extensions, which can prevent your ads from being displayed. This can be a frustrating experience for both you and your audience.<\/p>\n","protected":false},"author":1,"featured_media":370,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"","footnotes":""},"categories":[137],"tags":[],"class_list":["post-336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-gam-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy<\/title>\n<meta name=\"description\" content=\"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy\" \/>\n<meta property=\"og:description\" content=\"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\" \/>\n<meta property=\"og:site_name\" content=\"Google Ad Manager Tutorials &amp; Resources | Genecy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/genecycom\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-28T18:32:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-14T07:38:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Genecy Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@genecy_com\" \/>\n<meta name=\"twitter:site\" content=\"@genecy_com\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Genecy Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\"},\"author\":{\"name\":\"Genecy Team\",\"@id\":\"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687\"},\"headline\":\"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions\",\"datePublished\":\"2023-03-28T18:32:27+00:00\",\"dateModified\":\"2024-08-14T07:38:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\"},\"wordCount\":444,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg\",\"articleSection\":[\"GAM Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\",\"url\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\",\"name\":\"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy\",\"isPartOf\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg\",\"datePublished\":\"2023-03-28T18:32:27+00:00\",\"dateModified\":\"2024-08-14T07:38:23+00:00\",\"author\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687\"},\"description\":\"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage\",\"url\":\"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg\",\"contentUrl\":\"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg\",\"width\":1920,\"height\":1280,\"caption\":\"Website with ads - adblock checker\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.genecy.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.genecy.com\/resources\/#website\",\"url\":\"https:\/\/www.genecy.com\/resources\/\",\"name\":\"Google Ad Manager Tutorials &amp; Resources | Genecy\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.genecy.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687\",\"name\":\"Genecy Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g\",\"caption\":\"Genecy Team\"},\"url\":\"#\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy","description":"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/","og_locale":"en_US","og_type":"article","og_title":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy","og_description":"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.","og_url":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/","og_site_name":"Google Ad Manager Tutorials &amp; Resources | Genecy","article_publisher":"https:\/\/www.facebook.com\/genecycom\/","article_published_time":"2023-03-28T18:32:27+00:00","article_modified_time":"2024-08-14T07:38:23+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg","type":"image\/jpeg"}],"author":"Genecy Team","twitter_card":"summary_large_image","twitter_creator":"@genecy_com","twitter_site":"@genecy_com","twitter_misc":{"Written by":"Genecy Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#article","isPartOf":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/"},"author":{"name":"Genecy Team","@id":"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687"},"headline":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions","datePublished":"2023-03-28T18:32:27+00:00","dateModified":"2024-08-14T07:38:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/"},"wordCount":444,"commentCount":0,"image":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg","articleSection":["GAM Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/","url":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/","name":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions - Google Ad Manager Tutorials &amp; Resources | Genecy","isPartOf":{"@id":"https:\/\/www.genecy.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage"},"image":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg","datePublished":"2023-03-28T18:32:27+00:00","dateModified":"2024-08-14T07:38:23+00:00","author":{"@id":"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687"},"description":"Detect and handle blocked Google Ad Manager (GPT) tags with popup messages. Learn how to set up this feature and improve ad visibility.","breadcrumb":{"@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#primaryimage","url":"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg","contentUrl":"https:\/\/www.genecy.com\/resources\/wp-content\/uploads\/2023\/03\/headway-5QgIuuBxKwM-unsplash.jpg","width":1920,"height":1280,"caption":"Website with ads - adblock checker"},{"@type":"BreadcrumbList","@id":"https:\/\/www.genecy.com\/resources\/336-how-to-show-a-popup-message-if-google-ad-manager-tags-are-blocked-with-adblock-style-extensions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.genecy.com\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Show a Popup Message if Google Ad Manager Tags are Blocked with Adblock Style Extensions"}]},{"@type":"WebSite","@id":"https:\/\/www.genecy.com\/resources\/#website","url":"https:\/\/www.genecy.com\/resources\/","name":"Google Ad Manager Tutorials &amp; Resources | Genecy","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.genecy.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.genecy.com\/resources\/#\/schema\/person\/784f000634e575eac8ba17713028c687","name":"Genecy Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c21246161fe33fc0f26a360b7c31f84abc26b853013b0eee676ca62c707efc5c?s=96&d=mm&r=g","caption":"Genecy Team"},"url":"#"}]}},"modified_by":"Genecy Team","_links":{"self":[{"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/posts\/336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/comments?post=336"}],"version-history":[{"count":5,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/posts\/336\/revisions"}],"predecessor-version":[{"id":440,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/posts\/336\/revisions\/440"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/media\/370"}],"wp:attachment":[{"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/media?parent=336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/categories?post=336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.genecy.com\/resources\/wp-json\/wp\/v2\/tags?post=336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}