Akubo IT Autofill

Akubo IT Autofill

Exclusively for Akubo IT users. Automatically fill credentials based on saved passwords, providing a streamlined login experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Akubo IT Autofill",
  "version": "0.2.5",
  "description": "Exclusively for Akubo IT users. Automatically fill credentials based on saved passwords, providing a streamlined login experience.",
  "icons": {
    "16": "images/AkuboIT-16.png",
    "32": "images/AkuboIT-32.png",
    "48": "images/AkuboIT-48.png",
    "128": "images/AkuboIT-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/images/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*login*",
        "https://*/*login*",
        "http://*/*signin*",
        "https://*/*signin*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}