Magnet AXIOM Cloud Authenticator

Magnet AXIOM Cloud Authenticator

Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Magnet AXIOM Cloud Authenticator",
  "description": "Use Magnet AXIOM Cloud Authenticator to support your Cloud investigations",
  "version": "1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "extension.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost:*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*"
      ],
      "all_frames": true,
      "js": [
        "./content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "/images/magnet_icon16.png",
    "32": "/images/magnet_icon32.png",
    "48": "/images/magnet_icon48.png",
    "128": "/images/magnet_icon128.png"
  },
  "permissions": [
    "cookies",
    "tabs",
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "*://*.google.com/*",
    "https://.google.com/",
    "http://.google.com/",
    "https://accounts.google.com/",
    "http://accounts.google.com/",
    "https://accounts.youtube.com/",
    "http://accounts.youtube.com/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src http://localhost;  object-src http://localhost;"
  }
}