Dev Password Manage

Dev Password Manage

用于统一账号密码管理工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "icons": {
    "16": "Password.png",
    "32": "Password.png",
    "48": "Password.png",
    "128": "Password.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "name": "Dev Password Manage",
  "version": "1.2.0",
  "description": "用于统一账号密码管理工具",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}