Okta Profile reorder

Okta Profile reorder

Set Index for order of attributes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Okta Profile reorder",
  "version": "1.0.1",
  "description": "Set Index for order of attributes",
  "manifest_version": 3,
  "author": "Vignesh Lakshminarayanan",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "index.html",
    "default_title": "Okta Attribute Reorder"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.okta.com/*",
        "https://*.okta-emea.com/*",
        "https://*.oktapreview.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ]
}