CiteDrive 'BibTeX' Companion

CiteDrive 'BibTeX' Companion

Saving articles from the web browser to Overleaf with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CiteDrive 'BibTeX' Companion",
  "version": "4.1.5",
  "description": "Saving articles from the web browser to Overleaf with a single click",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "services/util.js",
        "services/saveDOI.js",
        "services/savePreprint.js",
        "services/saveOnline.js",
        "services/shortenAuthors.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "*://*.overleaf.com/project/*"
      ],
      "js": [
        "services/overleaf.js"
      ],
      "world": "MAIN"
    }
  ]
}