Linkedin Tag Checker

Linkedin Tag Checker

LinkedIn Tag Checker assists website owners in confirming the accurate installation of the LinkedIn tags on their website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "version": "0.0.1",
  "icons": {
    "16": "Icon16.png",
    "48": "Icon64.png",
    "128": "Icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "LinkedIn™ Tag Checker",
    "default_icon": {
      "16": "Icon16.png",
      "48": "Icon64.png",
      "128": "Icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "gcm",
    "notifications",
    "webRequest",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}