Tag Helper for Google™

Tag Helper for Google™

Install tag helper for Google ™ chrome extension and easily troubleshoot any issue with tags.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Tag Helper for Googleâ„¢",
  "version": "1.0.0",
  "description": "Install tag helper for Google â„¢ chrome extension and easily troubleshoot any issue with tags.",
  "action": {
    "default_title": "Tag Helper for Googleâ„¢",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./Icons/Icon16.png",
      "32": "./Icons/Icon32.png",
      "64": "./Icons/Icon64.png",
      "128": "./Icons/Icon128.png",
      "2000": "./Icons/Icon2000.png"
    }
  },
  "icons": {
    "16": "./Icons/Icon16.png",
    "32": "./Icons/Icon32.png",
    "64": "./Icons/Icon64.png",
    "128": "./Icons/Icon128.png",
    "2000": "./Icons/Icon2000.png"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "Images/*",
        "Logo/*",
        "styles/*",
        "Icons/*"
      ]
    }
  ],
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}