papers-with-video

papers-with-video

Show video explanations for research papers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "papers-with-video",
  "version": "0.5.2",
  "description": "Show video explanations for research papers",
  "author": "Amit Chaudhary <[email protected]>",
  "homepage_url": "https://github.com/amitness/papers-with-video",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://arxiv.org/abs/*",
        "http://arxiv.org/abs/*"
      ],
      "js": [
        "scripts/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "data/mapping.json"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "144": "images/icon.png"
  },
  "offline_enabled": true
}