IT Portal Password Lookup

IT Portal Password Lookup

IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "SIPortal",
  "manifest_version": 3,
  "name": "IT Portal Password Lookup",
  "version": "4.4.15",
  "version_name": "4.4.15",
  "minimum_chrome_version": "88.0",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "contextMenus",
    "webNavigation",
    "scripting",
    "unlimitedStorage",
    "clipboardWrite",
    "notifications"
  ],
  "commands": {
    "fill-password": {
      "suggested_key": "Ctrl+Shift+1",
      "description": "Fill Password. Note : It will fill the first found credential from the portal for the visited url."
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "description": "IT Portal Password Lookup. It allows to find Account , Device , Local Password from IT Portal",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start",
      "js": [
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "IT Portal Password Lookup",
    "default_popup": "index.html#/popup"
  },
  "icons": {
    "16": "assets/Icon-38.png",
    "19": "assets/Icon-38.png",
    "38": "assets/Icon-38.png",
    "48": "assets/Icon-38.png",
    "128": "assets/Icon-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'"
  }
}