Mendeley Web Importer

Mendeley Web Importer

Fast, convenient import of references and PDFs to your Mendeley Reference Manager library.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mendeley Web Importer",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "action": {
    "default_icon": "assets/logo48.png",
    "default_title": "Mendeley Web Importer"
  },
  "permissions": [
    "notifications",
    "scripting",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": "Ctrl+Shift+L"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "incognito": "split",
  "version": "3.2.88",
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "enhanced-reader.html",
        "reader.js",
        "reader-style.js",
        "fonts/NexusSansWebPro-Bold.*",
        "fonts/NexusSansWebPro-Regular.*",
        "assets/logoTransparent.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}