Lean Library

Lean Library

The Lean Library extension is a free tool which assists your library in delivering their services directly into your research workflow in more ways than one!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "options_ui": {
    "page": "options.html",
    "browser_style": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{809ea8a3-a45d-41a2-9cb0-e7c7d7321db5}"
    }
  },
  "name": "Lean Library",
  "description": "A library-approved tool to unlock access to academic papers.",
  "version": "2024.8.1",
  "manifest_version": 3,
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "action": {
    "default_icon": {
      "16": "icons/inactive/icon-16.png",
      "32": "icons/inactive/icon-32.png",
      "192": "icons/inactive/icon-192.png",
      "256": "icons/inactive/icon-256.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/store/icon-16.png",
    "32": "icons/store/icon-32.png",
    "192": "icons/store/icon-192.png",
    "256": "icons/store/icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+L",
        "mac": "Alt+Shift+L"
      }
    }
  },
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "popup.html",
        "icon-128.png",
        "icon-34.png",
        "*.svg",
        "placeholder-*.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "activeTab",
    "webNavigation",
    "contextMenus",
    "unlimitedStorage",
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ]
}