Swimlane Array.with Fix

Swimlane Array.with Fix

An extension that fixes a problem with Swimlane where non-admin users would not be authorized for certain pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Swimlane Array.with Fix",
  "description": "An extension that fixes a problem with Swimlane where non-admin users would not be authorized for certain pages",
  "version": "1.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "override.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}