Password Manager Authenticator

Password Manager Authenticator

Password Manager Authenticator generates two-factor authentication codes in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "1.0.5",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "__MSG_extShortName__",
    "default_popup": "view/popup.html"
  },
  "commands": {
    "_execute_browser_action": {},
    "scan-qr": {
      "description": "Scan a QR code"
    }
  },
  "options_ui": {
    "page": "view/options.html",
    "chrome_style": true
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "oauth2": {
    "client_id": "292457304165-u8ve4j79gag5o231n5u2pdtdrbfdo1hh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "background": {
    "scripts": [
      "dist/background.js",
      "dist/decodingLib.js"
    ],
    "persistent": true
  },
  "sandbox": {
    "pages": [
      "view/argon.html"
    ],
    "content_security_policy": "sandbox allow-scripts; script-src 'self' 'unsafe-eval';"
  },
  "permissions": [
    "activeTab",
    "identity",
    "storage",
    "*://*/*",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "offline_enabled": true
}