GTM Change History

GTM Change History

This is an addon for google tag manager it shows all changes to a tag, trigger or variable in your gtm container.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GTM Change History",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "This is an addon for google tag manager it shows all changes to a tag, trigger or variable in your gtm container.",
  "icons": {
    "16": "images/new-logo-16.png",
    "128": "images/new-logo-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts.babel/chromereload.js",
      "scripts.babel/background.js"
    ]
  },
  "permissions": [
    "background",
    "tabs",
    "webRequest",
    "*://*.google.com/",
    "storage"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/new-logo-128.png",
      "38": "images/new-logo-128.png"
    },
    "default_title": "tagmanager_history",
    "default_popup": "popup.html"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle feature foo"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "windows": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      }
    }
  }
}