Bestlaw

Bestlaw

A browser extension to add the features Westlaw and Lexis forgot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bestlaw",
  "short_name": "Bestlaw",
  "version": "0.1.5.5",
  "description": "A browser extension to add the features Westlaw and Lexis forgot.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "http://*.westlaw.com/*",
    "https://*.westlaw.com/*",
    "http://*.lexis.com/*",
    "https://*.lexis.com/*"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "share-fb-smaller.jpg",
    "share-tw-smaller.jpg"
  ],
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "css": [
        "ink.css",
        "featherlight.min.css",
        "style.css"
      ],
      "matches": [
        "http://*.westlaw.com/*",
        "https://*.westlaw.com/*",
        "http://*.lexis.com/*",
        "https://*.lexis.com/*",
        "http://*.casetext.com/*",
        "https://*.casetext.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}