Copy 2FA from Android Messages

Copy 2FA from Android Messages

Automatically copy 2FA codes from Android Messages to your clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.0.3",
  "description": "__MSG_extensionDescription__",
  "author": "Daniel Rozenberg",
  "homepage_url": "https://github.com/danielrozenberg/copy-2fa-from-android-messages",
  "icons": {
    "48": "icons/logo.svg",
    "96": "icons/logo.svg"
  },
  "background": {
    "scripts": [
      "background.mjs"
    ],
    "type": "module"
  },
  "permissions": [
    "clipboardWrite",
    "notifications"
  ],
  "host_permissions": [
    "https://messages.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://messages.google.com/*"
      ],
      "js": [
        "message-observer.mjs"
      ]
    }
  ],
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}