ByteSeal

ByteSeal

ByteSeal's browser extension for password management

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "ByteSeal's browser extension for password management",
  "version": "2.5.2",
  "manifest_version": 3,
  "version_name": "2.5.2 15032024 release",
  "name": "ByteSeal",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "logo.svg",
        "input-append.svg",
        "full.png.png",
        "inject.js",
        "contentInjectScript.bundle.js",
        "assets/img/brand/logo.svg",
        "assets/fonts/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "script_src": [
      "'self'",
      "'unsafe-eval'",
      "'unsafe-inline'"
    ],
    "object_src": [
      "'self'"
    ]
  }
}