Scite

Scite

scite allows users to see how a publication has been cited, providing the citation context and classification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Scite",
  "author": "Scite Inc.",
  "version": "1.24.0",
  "manifest_version": 2,
  "description": "scite allows users to see how a publication has been cited, providing the citation context and classification",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png",
    "256": "images/icons/256.png",
    "512": "images/icons/512.png",
    "1024": "images/icons/1024.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://*.scite.ai/*",
      "*://localhost/*"
    ]
  },
  "permissions": [
    "https://api.scite.ai/*",
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}