Google Tag Manager Blocker

Google Tag Manager Blocker

Prevent yourself from triggering Google Tag Manager on your own website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Tag Manager Blocker",
  "version": "0.0.1",
  "description": "Prevent yourself from triggering Google Tag Manager on your own website.",
  "background": {
    "scripts": [
      "./backgroundScripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./contentScripts/main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "./popup/view/popup.html",
    "default_icon": {
      "64": "images/GTM-Blocker.png"
    }
  },
  "icons": {
    "64": "images/GTM-Blocker.png"
  },
  "manifest_version": 2
}