2FA Notifier

2FA Notifier

Notifies users whether the current browser page supports 2FA or not.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "2FA Notifier",
  "manifest_version": 2,
  "version": "0.8.1",
  "author": "Conor Gilsenan",
  "description": "Notifies users whether the current browser page supports 2FA or not.",
  "background": {
    "scripts": [
      "generatedJS/background.bundle.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "browserAction/popup.html",
    "default_title": "2FA Notifier",
    "default_icon": {
      "16": "icons/no_2fa.png",
      "32": "icons/[email protected]",
      "48": "icons/[email protected]"
    }
  },
  "icons": {
    "48": "icons/app_icon_48.png",
    "128": "icons/app_icon_128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "web_accessible_resources": [
    "**/*.html",
    "**/*.css",
    "**/*.js",
    "**/*.png"
  ]
}