Article Galaxy Browser Extension

Article Galaxy Browser Extension

With a single click of a button, buy, access, or rent any scientific document directly from your search results with a shopping-cart like user experience on PubMed, Google Scholar and more than 80 other scholarly literature sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Article Galaxy Browser Extension",
  "description": "Article Galaxy Browser Extension",
  "version": "1.1.3",
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "/icons/logo.png",
      "48": "/icons/logo.png",
      "128": "/icons/logo.png"
    }
  },
  "icons": {
    "16": "/icons/logo.png",
    "48": "/icons/logo.png",
    "128": "/icons/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  }
}