Get Google Tag Manager Size

Get Google Tag Manager Size

This extension shows the size in KB of the Google Tag Manager container in browser, is used for monitoring containers and measuring…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Get Google Tag Manager Size",
  "version": "2.1.1",
  "manifest_version": 3,
  "permissions": [
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "performance.js"
      ]
    }
  ],
  "action": {
    "default_title": "Get Google Tag Manager Size",
    "default_icon": {
      "16": "icon-16x16.png",
      "38": "icon-38x38.png",
      "48": "icon-48x48.png",
      "128": "icon-128x128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-16x16.png",
    "38": "icon-38x38.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  }
}