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


{
  "manifest_version": 2,
  "name": "Chiff",
  "author": "Chiff B.V.",
  "version": "3.5.1",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "16": "assets/icon-16x16.png",
      "32": "assets/icon-32x32.png"
    },
    "default_popup": "popup/index.html"
  },
  "commands": {
    "login": {
      "suggested_key": {
        "default": "Ctrl+K"
      },
      "description": "Log in with Chiff."
    }
  },
  "background": {
    "page": "background/index.html",
    "persistent": false
  },
  "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"
  },
  "permissions": [
    "*://*/*",
    "activeTab",
    "tabs",
    "contextMenus",
    "cookies",
    "webNavigation",
    "privacy",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "./content/content.global.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./content/notifications.global.js"
      ],
      "css": [
        "./assets/fonts.css"
      ]
    }
  ],
  "web_accessible_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",
    "teams/index.html",
    "content/style.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}