Insert arXiv comments for feedly

Insert arXiv comments for feedly

Insert a paper comment into feedly arXiv pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Insert arXiv comments for feedly",
  "version": "1.0",
  "description": "Insert a paper comment into feedly arXiv pages",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*.arxiv.org/*",
    "https://feedly.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://feedly.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_128.png",
    "32": "images/icon_128.png",
    "48": "images/icon_128.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 3
}