Layman Law Reader

Layman Law Reader

Layman Law reader is an extension that helps users translate contract clauses into easy to understand language

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Layman Law Reader",
  "description": "Layman Law reader is an extension that helps users translate contract clauses into easy to understand language",
  "version": "1.0",
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "getPagesSource.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://layman.law/extension/*"
    ]
  }
}