GTM Plus

GTM Plus

GTM Plus enables hotkeys and the utility features in the UI of the Google Tag Manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GTM Plus",
  "description": "GTM Plus enables hotkeys and the utility features in the UI of the Google Tag Manager.",
  "version": "1.1.2",
  "manifest_version": 3,
  "host_permissions": [
    "https://tagmanager.google.com/*"
  ],
  "action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tagmanager.google.com/*"
      ],
      "js": [
        "scripts/content-script.js",
        "scripts/sort-icon-inner-html.js",
        "scripts/floating-controls-html.js"
      ],
      "css": [
        "css/content-style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/16x16px.png",
    "32": "images/32x32px.png",
    "48": "images/48x48px.png",
    "128": "images/128x128px.png"
  },
  "permissions": [
    "storage"
  ]
}