Okta Verify Auto Send

Okta Verify Auto Send

Automatically send an Okta Verify push notification or SMS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Okta Verify Auto Send",
  "version": "1.2.0",
  "manifest_version": 2,
  "author": "Mike Kenyon",
  "description": "Automatically send an Okta Verify push notification or SMS.",
  "homepage_url": "https://github.com/mkenyon/okta-verify-auto-send",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "permissions": [
    "https://*.okta.com/"
  ],
  "short_name": "Okta Verify Auto Send",
  "content_scripts": [
    {
      "matches": [
        "https://*.okta.com/",
        "https://*.okta.com/login/login.htm*",
        "https://*.okta.com/signin/verify/okta/push",
        "https://*.okta.com/signin/verify/okta/sms"
      ],
      "js": [
        "src/inject/okta-verify.js"
      ]
    }
  ]
}