CoCites [Beta]

CoCites [Beta]

CoCites adds a one-click button in PubMed to show frequently co-cited articles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "CoCites",
  "version": "2.4",
  "description": "CoCites adds a one-click button in PubMed to show frequently co-cited articles",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "webNavigation",
    "https://icite.od.nih.gov/api/pubs/*",
    "https://www.ncbi.nlm.nih.gov/pmc/articles/*",
    "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/*"
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    },
    "show_matches": [
      "https://www.ncbi.nlm.nih.gov/pubmed/*",
      "https://pubmed.ncbi.nlm.nih.gov/*",
      "*://scholar.google.com/*",
      "*://scholar.google.fr/*",
      "*://scholar.google.nl/*",
      "*://scholar.google.es/*",
      "*://scholar.google.ca/*",
      "*://scholar.google.de/*",
      "*://scholar.google.it/*",
      "*://scholar.google.jp/*",
      "*://scholar.google.no/*",
      "*://scholar.google.pt/*",
      "*://scholar.google.ru/*",
      "*://*/pubmed*"
    ]
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.ncbi.nlm.nih.gov/pubmed*",
        "*://pubmed.ncbi.nlm.nih.gov/*",
        "*://scholar.google.com/*",
        "*://scholar.google.fr/*",
        "*://scholar.google.nl/*",
        "*://scholar.google.es/*",
        "*://scholar.google.ca/*",
        "*://scholar.google.de/*",
        "*://scholar.google.it/*",
        "*://scholar.google.jp/*",
        "*://scholar.google.no/*",
        "*://scholar.google.pt/*",
        "*://scholar.google.ru/*",
        "*://*.proxy.library.emory.edu/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "contentScript.js",
        "jquery-3.4.1.min.js"
      ]
    }
  ]
}