Authenticator App

Authenticator App

Secure and fast two-factor authentication app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Authenticator App",
  "version": "1.2.3",
  "description": "Secure and fast two-factor authentication app",
  "mode": "production",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "48": "icon-48.png",
    "64": "icon-64.png",
    "96": "icon-96.png",
    "128": "icon-128.png",
    "256": "icon-256.png",
    "512": "icon-512.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "toolbar-unpaired-16.png",
      "19": "toolbar-unpaired-19.png",
      "32": "toolbar-unpaired-32.png",
      "38": "toolbar-unpaired-38.png",
      "48": "toolbar-unpaired-48.png",
      "72": "toolbar-unpaired-72.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.css",
        "*.svg",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "minimum_chrome_version": "88"
}