SciHive

SciHive

Easily load any PDF to your SciHive library

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SciHive",
  "version": "2.0.2",
  "description": "Easily load any PDF to your SciHive library",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "author": "SciHive",
  "background": {
    "scripts": [
      "background.bundle.js",
      "hot-reload.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon_on_32.png",
    "default_title": "Add the current paper to your SciHive library"
  },
  "icons": {
    "128": "icon_on_128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*.pdf",
        "https://*/*.pdf"
      ],
      "exclude_matches": [
        "https://www.scihive.org/*",
        "http://www.scihive.org/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ]
}