GTM Copy Paste

GTM Copy Paste

Copy your Tags, Triggers and Variables and Paste them into any other account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GTM Copy Paste",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2kJFQQXhGoGjDRnBTta3uphkaWx6lAJGG99Yo6A+ce74No8Vpq3A1RPKAL2oPhzo9eqe9pLqSwWZFOq5qc8keT6KjZ2fvQh5VQj9iHuMkv1veOYZOzrL7jCrh4JnNu4VL3ej71PYi/Le+PyxbBbz3e/7t+H02HBGkORwZkafmmNzr7ORPRneofVPRWeziyR+DYF9etWaDstCv5hpug5In3RexT+Zs/KOFLFT3/EzlnYHbsu1wEi4LHI7eaZS4EgSXgxT3ehh/bwCyMtuFz3bt57iOvdNqUvmOR9OnWqBDYF1BctYaMTPKSpxiVV/sEzye5jz0P7hJnIS2GHXo3KvzQIDAQAB",
  "version": "0.1.9",
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://apis.google.com https://*.firebaseio.com https://www.googleapis.com https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "manifest_version": 2,
  "description": "Copy your Tags, Triggers and Variables and Paste them into any other account",
  "homepage_url": "http://measureschool.com",
  "icons": {
    "16": "icons/gtmCopy16x16.png",
    "48": "icons/gtmCopy48x48.png",
    "144": "icons/gtmCopy144x144.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/gtmCopy16x16.png",
    "default_title": "GTM Copy Paste"
  },
  "permissions": [
    "contextMenus",
    "https://tagmanager.google.com/*",
    "https://measureschool.com/*",
    "storage",
    "tabs",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tagmanager.google.com/*"
      ],
      "js": [
        "src/content/content.js"
      ]
    }
  ]
}