SANDOGTM

SANDOGTM

Adjust GTM's styling and controls to make better use of shortcuts and screen space

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SANDOGTM",
  "description": "Adjust GTM's styling and controls to make better use of shortcuts and screen space",
  "version": "0.2.2",
  "options_page": "options.html",
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://tagmanager.google.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "SANDOGTM.js",
    "images/exit.png",
    "images/refresh.png",
    "images/share.png",
    "images/icon.png"
  ],
  "permissions": [
    "*://tagmanager.google.com/*",
    "storage"
  ]
}