Scholar with Code

Scholar with Code

An extension to show code implementations from Papers with Code directly in Google Scholar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scholar with Code",
  "version": "1.0.4",
  "icons": {
    "493": "docs/logo.png"
  },
  "description": "An extension to show code implementations from Papers with Code directly in Google Scholar.",
  "permissions": [
    "https://paperswithcode.com/*",
    "https://scholar.google.com/*",
    "https://scholar.google.co.il/*",
    "https://arxiv.org/*"
  ],
  "content_scripts": [
    {
      "js": [
        "src/content_scholar.js"
      ],
      "matches": [
        "https://scholar.google.com/*",
        "https://scholar.google.co.il/*"
      ]
    },
    {
      "js": [
        "src/content_arxiv.js"
      ],
      "matches": [
        "https://arxiv.org/abs/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  }
}