arxive

arxive

arxive is all you need; download papers with your settings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "arxive",
  "version": "2.4",
  "description": "arxive is all you need; download papers with your settings.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://arxiv.org/*pdf*",
        "*://arxiv.org/abs/*",
        "*://export.arxiv.org/*pdf*",
        "*://export.arxiv.org/abs/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "*://export.arxiv.org/*",
    "*://arxiv.org/*",
    "downloads",
    "storage"
  ],
  "manifest_version": 2
}