Lupl Pins Extension

Lupl Pins Extension

Easily collect, pin, organize and share your legal research when using Lupl, the next-generation matter management platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lupl Pins Extension",
  "version": "1.3",
  "description": "Easily collect, pin, organize and share your legal research when using Lupl, the next-generation matter management platform.",
  "icons": {
    "48": "assets/icons/lupl-icon.png"
  },
  "action": {
    "default_title": "Add Pin to Lupl",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://app.lupl.com/*",
      "*://qa.lawyersashumans.com/*"
    ]
  }
}