Unpaywall

Unpaywall

Legally get full text of scholarly articles as you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unpaywall",
  "version": "3.98",
  "manifest_version": 2,
  "description": "Legally get full text of scholarly articles as you browse.",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "53.0"
    }
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Unpaywall",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.1.1.min.js",
        "unpaywall.js"
      ]
    }
  ],
  "permissions": [
    "*://*.oadoi.org/*",
    "storage"
  ],
  "web_accessible_resources": [
    "unpaywall.html"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}