CORA: Understand PubMed Citation Contexts

CORA: Understand PubMed Citation Contexts

Understand citation contexts as you browse PubMed papers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CORA: Understand PubMed Citation Contexts",
  "short_name": "CORA-PubMed",
  "description": "Understand citation contexts as you browse PubMed papers.",
  "version": "0.20",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://static.doodlebook.org/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "loading.gif",
        "my.css",
        "bootstrap.min.css"
      ],
      "matches": [
        "https://pubmed.ncbi.nlm.nih.gov/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://pubmed.ncbi.nlm.nih.gov/*"
      ],
      "css": [
        "my.css"
      ],
      "js": [
        "jquery.min.js",
        "main_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}