MagicBird

MagicBird

Webpage automation tool for NYU websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "manifest_version": 3,
  "version": "6.0.2",
  "default_locale": "en",
  "minimum_chrome_version": "88",
  "icons": {
    "16": "icon_16_16.png",
    "48": "icon_48_48.png",
    "128": "icon_128_128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon_16_16.png",
      "24": "icon_24_24.png",
      "32": "icon_32_32.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.duosecurity.com/*"
      ],
      "all_frames": true,
      "js": [
        "mfaHelperCore.bundle.js"
      ]
    },
    {
      "matches": [
        "*://start.nyu.edu/*",
        "*://auth.nyu.edu/*",
        "*://shibboleth.nyu.edu/*"
      ],
      "js": [
        "mfaHelperOverlay.bundle.js"
      ]
    },
    {
      "matches": [
        "*://sis.portal.nyu.edu/*"
      ],
      "js": [
        "enrollmentHelper.bundle.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.duosecurity.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "loading_animation.gif"
      ],
      "matches": [
        "*://start.nyu.edu/*",
        "*://auth.nyu.edu/*",
        "*://shibboleth.nyu.edu/*"
      ]
    },
    {
      "resources": [
        "icon_512_512.png"
      ],
      "matches": [
        "*://sis.portal.nyu.edu/*"
      ]
    }
  ]
}