Med Study Pop-up by Picmonic

Med Study Pop-up by Picmonic

Quickly view high-yield details on any medical topic you're studying. Includes summaries, fact lists, and access to mnemonic videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Med Study Pop-up by Picmonic",
  "version": "1.3.8",
  "description": "Quickly view high-yield details on any medical topic you're studying. Includes summaries, fact lists, and access to mnemonic videos.",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "icons": {
    "256": "assets/img/icon_256x256.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/css/app.css",
        "assets/css/fonts.css",
        "assets/css/tippy.css",
        "assets/css/tippy-theme-light-picmonic.css"
      ],
      "js": [
        "assets/js/mark.min.js",
        "assets/js/popper.min.js",
        "assets/js/tippy.umd.min.js",
        "assets/js/flashtext.js",
        "assets/js/jquery.js",
        "assets/js/tracking.js",
        "picmonic.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/fonts/*.woff",
        "assets/fonts/*.woff2",
        "assets/fonts/*.svg",
        "assets/fonts/*.ttf",
        "assets/fonts/*.eot",
        "assets/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "256": "assets/img/icon_256x256.png"
    },
    "default_title": "Med Study Pop-up by Picmonic",
    "default_popup": "popup.html"
  }
}