Suffolk Library Catalog - Map View

Suffolk Library Catalog - Map View

A free Chrome extension adding Maps to the Suffolk County Library Catalog.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Suffolk Library Catalog - Map View",
  "description": "A free Chrome extension adding Maps to the Suffolk County Library Catalog.",
  "version": "2.1.1",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "mapImages/icon16.png",
    "48": "mapImages/icon48.png",
    "128": "mapImages/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://search.livebrary.com/*",
        "https://discover.livebrary.com/*"
      ],
      "css": [
        "leaflet/leaflet.css",
        "contentScript.css"
      ],
      "js": [
        "leaflet/leaflet.js",
        "domManipHelper.js",
        "lambdaCalls.js",
        "libraryInfo.js",
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.jpg",
        "*.png"
      ],
      "matches": [
        "https://search.livebrary.com/*",
        "https://discover.livebrary.com/*"
      ]
    }
  ]
}