Auth Plus

Auth Plus

An UNOFFICAL Firefox authenticator that can autofill TOTP codes with Firefox Android support

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Auth Plus",
  "short_name": "Auth Plus",
  "homepage_url": "https://github.com/FoxAuth/FoxAuth/",
  "version": "1.5.2",
  "description": "__MSG_extensionDescription__",
  "applications": {
    "gecko": {
      "id": "foxauth@foxauth",
      "strict_min_version": "67.0"
    }
  },
  "icons": {
    "48": "icons/icon.svg",
    "96": "icons/icon.svg"
  },
  "browser_action": {
    "default_icon": "icons/icon.svg",
    "default_title": "Auth Plus 1.5.2",
    "default_popup": "options/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "background": {
    "page": "options/background.html"
  },
  "sidebar_action": {
    "default_icon": "icons/icon.svg",
    "default_title": "Auth Plus",
    "default_panel": "options/popup.html",
    "open_at_install": false
  },
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "notifications",
    "contextualIdentities",
    "activeTab",
    "clipboardWrite",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://account.ubisoft.com/*",
        "https://connect.ubisoft.com/*"
      ],
      "js": [
        "scripts/content/autofill.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content/autofill.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "F8"
      },
      "description": "Open popup"
    },
    "open-popup-in-sidebar": {
      "suggested_key": {
        "default": "F2"
      },
      "description": "Open popup in Firefox sidebar"
    }
  },
  "default_locale": "en"
}