Unearth

Unearth

This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unearth",
  "version": "0.0.4",
  "manifest_version": 2,
  "description": "This extension adds funding and conflict-of-interest information to the abstract page of Pubmed articles (when available)",
  "icons": {
    "48": "images/icon-48.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://www.ncbi.nlm.nih.gov/*",
        "http://www.pubmedcentral.nih.gov/*",
        "http://www.accessdata.fda.gov/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "scripts/injector.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "scripts/jquery.min.map"
  ]
}