Lean Library

Lean Library

A library-approved tool to unlock access to academic papers.

Additional files are visible only to premium users

manifest.json


{
  "options_page": "options.html",
  "name": "Lean Library",
  "description": "A library-approved tool to unlock access to academic papers.",
  "version": "2024.7.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "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>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}