Scholarcy Browser Extension

Scholarcy Browser Extension

Summarizes research articles, creates interactive flashcards, highlights key points, links to open-access versions of each citation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "icon16.plasmo.bdf249cb.png",
    "32": "icon32.plasmo.05bb7f90.png",
    "48": "icon48.plasmo.a32f0d4b.png",
    "64": "icon64.plasmo.0ee4cf32.png",
    "128": "icon128.plasmo.be4ef7c1.png"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon16.plasmo.bdf249cb.png",
      "32": "icon32.plasmo.05bb7f90.png",
      "48": "icon48.plasmo.a32f0d4b.png",
      "64": "icon64.plasmo.0ee4cf32.png",
      "128": "icon128.plasmo.be4ef7c1.png"
    },
    "default_popup": "popup.html"
  },
  "version": "5.0.3",
  "author": "Scholarcy",
  "name": "Scholarcy Browser Extension",
  "description": "Summarizes research articles, creates interactive flashcards, highlights key points, links to open-access versions of each citation",
  "background": {
    "service_worker": "static/background/index.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "activeTab",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.00c7919c.js"
      ],
      "all_frames": false,
      "css": []
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+Y",
        "mac": "MacCtrl+Command+Y"
      }
    }
  },
  "host_permissions": [
    "https://*.scholarcy.com/*"
  ]
}