Chiff

Chiff

Chiff allows you to log in to any website using your phone, making logging in safer and simpler.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chiff",
  "author": "Chiff B.V.",
  "version": "3.6.0",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "commands": {
    "login": {
      "suggested_key": {
        "default": "Ctrl+K"
      },
      "description": "Log in with Chiff."
    }
  },
  "icons": {
    "16": "assets/icon-16x16.png",
    "32": "assets/icon-32x32.png",
    "48": "assets/icon-48x48.png",
    "96": "assets/icon-96x96.png",
    "128": "assets/icon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "./content/content.global.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./content/notifications.global.js"
      ],
      "css": [
        "./assets/fonts.css"
      ]
    }
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "assets/montserrat-v12-latin-500.woff",
        "assets/montserrat-v12-latin-500.woff2",
        "assets/montserrat-v12-latin-700.woff",
        "assets/montserrat-v12-latin-700.woff2",
        "content/webauthn.js",
        "content/style.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "cookies",
    "webNavigation",
    "privacy",
    "storage",
    "commands",
    "scripting"
  ],
  "background": {
    "service_worker": "assets/service-worker-loader.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon-16x16.png",
      "32": "assets/icon-32x32.png"
    },
    "default_popup": "popup/index.html"
  }
}