Plexuss

Plexuss

The Student Opportunity Network!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Plexuss",
  "description": "The Student Opportunity Network!",
  "version": "2.0.0",
  "action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://plexuss.com/*",
        "https://dev.plexuss.com/*",
        "http://plexuss.local:8000/*",
        "http://plexuss.local/*"
      ],
      "js": [
        "install_notifier.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "alarms",
    "contextMenus",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "https://plexuss.com/*",
    "https://plexuss.com/"
  ],
  "background": {
    "service_worker": "background.js"
  }
}