LexisNexis

LexisNexis

Get the latest legal news and legal content within your browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LexisNexis",
  "version": "1.2.0",
  "manifest_version": 3,
  "description": "Get the latest legal news and legal content within your browsing experience.",
  "icons": {
    "16": "images/Logo_16.png",
    "32": "images/Logo_32.png",
    "48": "images/Logo_48.png",
    "128": "images/Logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*",
        "https://www.google.co.uk/search*",
        "https://lexisnexis.co.uk/legal/news/*",
        "https://www.lexisnexis.co.uk/legal/news/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}